/*
	* Gridless version 2.0

	* Credit is left inline and big thanks to Nicolas Gallagher and Jonathan Neal

	* Across this document we use safe CSS hacks: http://mathiasbynens.be/notes/safe-css-hacks
	* Selectors beggining with an underscore (_selector: property) target only IE6
	* Selectors beggining with an asterisk (*selector: property) target only IE6 and IE7
*/
/* HTML5 display definitions
---------------------------------------- */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, dialog {
  display: block; }

/* Corrects inline-block not defined in IE6/7/8 and FF3 */
audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

audio:not([controls]) {
  display: none; }

/* Ensures content is hidden from all presentations, including screenreaders */
[hidden] {
  display: none;
  visibility: hidden; }

/* Base structure
---------------------------------------- */
/*
	* The body will work like a 'div#wrapper' (for this to work, the 'body' needs to have a set width)

	* To add a background to the PAGE, set it in the 'html' element
	* To add a background to the WRAPPER, set it in the 'body' element
*/
html {
  height: 100%;
  /*font-size: 62.5%;*/
  overflow-y: scroll;
  /* Force a scrollbar in non-IE */
  -webkit-text-size-adjust: 100%;
  /* Prevent iOS text size adjust on orientation change without disabling user zoom */
  -ms-text-size-adjust: 100%; }

body {
  margin: 0 auto;
  min-height: 100%; }

/* Fonts settings based on the 100E2R standard: http://www.informationarchitects.jp/en/100e2r/ */
body, button, input, select, textarea {
  /*font: 1em/1.625 'museo_sans_rounded500', serif;
	color: #222; /* Full black on white is too much contrast, #222 is a better default */ }

/* Add and/or remove tags as your baseline grid needs */
p, blockquote, q, pre, address, hr, code, samp, dl, ol, ul, form, table, fieldset, menu, h4, h5, h6, img, figure, figcaption, button, hr {
  margin: 0; }

/* Headings/small
---------------------------------------- */
/*
	* Font sizes are based on the golden ratio of 16
	* See this for the modular scale: ow.ly/5jGl6
	* Line-heights and margins are adjusted to keep a 26px (1.5rem) vertical rhythm across elements 
*/
/*
h1, h2, h3, h4, h5, h6 {
	font-family:'museo_sans_rounded900', sans-serif;
	font-size: 1em;
	font-weight: normal;
}
h1 {
	font-size: 4.25em;
	line-height: 1.1471em;
	margin: 0 0 0.3824em;
}

h2 {
	font-size: 2.625em;
	line-height: 1.2381em;
	margin: 0 0 0.619em;
}

h3 {
	font-size: 1.5rem;
	line-height: 1em;
	margin: 0 0 1em;
}

small {
	font-size: 0.625em;
	margin: 0 0 2.6em;
}
*/
/* Preformatted text and code
---------------------------------------- */
/* Allows line wrapping of 'pre' */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

pre, code, kbd, samp {
  font: 1em/1.5rem Menlo, Consolas, 'DejaVu Sans Mono', Monaco, 'Courier New', Courier, monospace; }

/* Tables
---------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0; }

th {
  text-align: left; }

tr, th, td {
  /*padding-right: 1.5rem;*/ }

/* Forms
---------------------------------------- */
form {
  margin: 0; }

fieldset {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto;
  vertical-align: top; }

legend {
  border: 0;
  *margin-left: -7px; }

button, input, select, textarea {
  vertical-align: baseline;
  *vertical-align: middle; }

button, input {
  line-height: normal;
  *overflow: visible; }

button, input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button; }

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/* Reintroduce inner spacing in 'table' to avoid overlap and whitespace issues in IE6/7 */
table button, table input {
  *overflow: auto; }

/* Quotes
---------------------------------------- */
blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; }

blockquote, q, cite {
  font-style: italic; }

blockquote {
  padding-left: 1.5rem;
  border-left: 1px solid #ddd; }

blockquote > p {
  padding: 0; }

/* Lists
---------------------------------------- */
ul, ol {
  list-style-position: inside;
  padding: 0; }

li ul, li ol {
  margin: 0 1.5rem; }

dl dd {
  margin-left: 1.5rem; }

/* Links
---------------------------------------- */
a, a:visited {
  text-decoration: none;
  color: inherit; }

a:hover {
  text-decoration: none; }

a:focus {
  outline: thin dotted; }

/* Better CSS outline suppression: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
  outline: none; }

/* Figures
---------------------------------------- */
figure {
  margin: 0; }

/* Embedded content
---------------------------------------- */
img, object, video {
  max-width: 100%;
  /* Automatically scales images larger than the container. Consider this first: http://unstoppablerobotninja.com/entry/fluid-images/ */
  /* _width: 100%; /* IE6 doesn't support max-width, so we just use width. If the image is larger than the container, just uncomment this. If it is smaller than the container, uncomment and change the 100% value to an absolute one */ }

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  /* Improve IE's resizing of images: css-tricks.com/ie-fix-bicubic-scaling-for-images */ }

/* Corrects overflow displayed oddly in IE9 */
svg:not(:root) {
  overflow: hidden; }

/* Abbreviations
---------------------------------------- */
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

/* Marked/inserted/deleted text
---------------------------------------- */
mark {
  background: #ff0; }

ins {
  text-decoration: none;
  background: #ff9; }

del {
  text-decoration: line-through; }

/* Others
---------------------------------------- */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-bottom: 1px solid #ddd; }

strong, b, dt {
  font-weight: 700; }

dfn {
  font-style: italic; }

var, address {
  font-style: normal; }

/* Position 'sub' and 'sup' without affecting line-height: gist.github.com/413930 */
sub, sup {
  font-size: 0.625em;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Helper classes
---------------------------------------- */
/*
	* Micro clearfix hack, more semantically titled with 'group'
	* Source: nicolasgallagher.com/micro-clearfix-hack/
*/
.group:before, .group:after {
  content: "";
  display: table; }

.group:after {
  clear: both; }

.group {
  *zoom: 1; }

img {
  vertical-align: top; }

/* Print styles
---------------------------------------- */
/* Print styles inlined to avoid extra HTTP connection */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    /* Black prints faster: sanbeiji.com/archives/953 */
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }
  a, a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  /* Do not show javascript and internal links */
  a[href^="javascript:"]:after, a[href^="#"]:after {
    content: ""; }
  /* Printing Tables: css-discuss.incutio.com/wiki/Printing_Tables */
  thead {
    display: table-header-group; }
  tr, img {
    page-break-inside: avoid; }
  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  h2, h3 {
    page-break-after: avoid; } }

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* transition:all .2s ease;*/ }

::-moz-selection {
  background: #e01b2f;
  text-shadow: none;
  color: #fff; }

::selection {
  background: #e01b2f;
  text-shadow: none;
  color: #fff; }

html {
  height: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
  color: #333;
  margin: 0;
  min-height: 100%;
  height: 100%; }

.inside {
  width: 1236px;
  margin: 0 auto; }

.justify-fix {
  width: 100%;
  height: 0;
  display: inline-block; }

.butoane-share .buton-share {
  display: inline-block;
  height: 35px;
  vertical-align: top;
  background-repeat: no-repeat;
  border-radius: 3px; }

.butoane-share .buton-share:hover {
  opacity: .9;
  box-shadow: 0 3px 0 #ccc; }

.butoane-share .buton-share.facebook {
  background-image: url(/assets/old/images/share-fb.png);
  width: 171px; }

.butoane-share .buton-share.twitter {
  background-image: url(/assets/old/images/share-tw.png);
  width: 156px; }

.butoane-share .buton-share.googleplus {
  background-image: url(/assets/old/images/share-gp.png);
  width: 158px; }

.butoane-share .buton-share.email {
  background-image: url(/assets/old/images/share-em.png);
  width: 140px; }

.marcaj {
  display: inline-block;
  background: #fccf5c;
  text-transform: uppercase;
  padding: 3px 8px;
  font-size: 17px;
  vertical-align: top;
  margin: 1px 8px 0 -1px;
  border-radius: 2px;
  text-shadow: none; }

.sectiune .C1 .stire h1 .marcaj, .sectiune .C3 .stire h1 .marcaj {
  font-size: 12px;
  margin-right: 6px;
  padding: 2px 6px; }

.deschidere .stiri .principala .positioner .text h1 .marcaj {
  text-shadow: none;
  margin-top: 4px;
  box-shadow: 0 1px 0 #000; }

a .marcaj {
  color: #333 !important; }

.sectiune {
  margin-bottom: 30px; }

.sectiune .C1 {
  width: 300px;
  display: inline-block;
  vertical-align: top; }

.sectiune .C2 {
  width: calc(100% - 624px);
  display: inline-block;
  vertical-align: top; }

.sectiune .C3 {
  width: 300px;
  display: inline-block;
  vertical-align: top; }

.sectiune .box {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  position: relative;
  text-align: left; }

.sectiune .stire {
  padding: 12px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); }

.sectiune .stire .supratitlu {
  margin: 1px 3px 8px;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  color: #e01b2f;
  max-width: 70%; }

.sectiune .stire .ora-si-comentarii {
  position: absolute;
  margin: 0;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  color: #959595;
  top: 13px;
  right: 15px; }

.sectiune .stire .ora-si-comentarii img {
  margin-top: 1px; }

.sectiune .stire h1 {
  margin: 0 3px 12px;
  font-size: 18px;
  line-height: 1.1;
  font-weight: bold; }

.sectiune .stire:hover h1 {
  color: #e01b2f; }

.sectiune .stire .wrapper-poza {
  width: 276px;
  height: 179px;
  margin-bottom: 3px;
  position: relative;
  overflow: hidden; }

.sectiune .stire .wrapper-poza .poza {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: all ease .5s;
  background-color: #f2f2ef; }

.sectiune .stire:hover .wrapper-poza .poza {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05); }

.sectiune .stire .wrapper-poza .poza img {
  /*display:none;*/
  max-width: none; }

.header-mic {
  display: none;
  height: 30px;
  overflow: hidden;
  background-color: #e01b2f;
  text-align: center;
  color: #fff;
  font-size: 14px;
  list-style-type: none;
  padding: 5px 0; }

.header-mic li {
  display: inline-block; }

.header-mic li a {
  display: block;
  padding: 0 15px; }

.header-mic li a:hover {
  text-decoration: underline; }

.header-mic li:last-child a {
  border-left: 1px solid #f7d6d8;
  margin-left: 15px;
  padding-left: 52px;
  background-image: url(/assets/old/images/key.png);
  background-repeat: no-repeat;
  background-position: 30px 4px; }

.deschidere {
  margin-bottom: 30px;
  background-color: #fff;
  box-shadow: 0 30px 0 #fff;
  margin-top: -30px; }

.wrapper-header-mare {
  margin-bottom: 30px;
  background-color: #fff; }

.wrapper-header-mare .header-mare {
  height: 90px;
  padding: 0 0 19px 15px;
  position: relative; }

.wrapper-header-mare .header-mare .logo {
  display: block;
  width: 270px;
  height: 49px;
  background-image: url(/assets/old/images/logo.png);
  position: absolute;
  top: 22px; }

.wrapper-header-mare .header-mare .logo.gd {
  background-image: url(/assets/old/images/logo-gd.png);
  width: 270px; }

.wrapper-header-mare .header-mare .meniu-principal {
  list-style-type: none;
  text-transform: uppercase;
  margin-left: 323px;
  padding-top: 20px; }

.wrapper-header-mare .header-mare .meniu-principal.gd {
  margin-left: 623px; }

.wrapper-header-mare .header-mare .meniu-principal li {
  display: inline-block; }

.wrapper-header-mare .header-mare .meniu-principal li > a {
  padding: 10px 12px 30px;
  display: block;
  font-size: 24px;
  background-image: url(/assets/old/images/ddd.png);
  background-repeat: no-repeat;
  background-position: center 71px; }

.wrapper-header-mare .header-mare .meniu-principal li > a:hover {
  color: #e01b2f;
  background-position: center 45px; }

.wrapper-header-mare .header-mare .meniu-principal li > a.selectat {
  color: #e01b2f;
  background-position: center 45px; }

.wrapper-header-mare .header-mare .meniu-principal li .submeniu-wrapper {
  position: absolute;
  background: #fff;
  top: 90px;
  left: 0;
  right: 0;
  z-index: 99;
  opacity: 0;
  height: 0;
  overflow: hidden;
  text-align: center;
  transition-delay: .8s;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.15); }

.wrapper-header-mare .header-mare .meniu-principal li:hover .submeniu-wrapper {
  opacity: 1;
  height: auto;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.15); }

.wrapper-header-mare .header-mare .meniu-principal li .submeniu-wrapper .submeniu {
  padding: 10px 8% 20px;
  border-bottom: 2px dotted #eee; }

.wrapper-header-mare .header-mare .meniu-principal li .submeniu-wrapper .submeniu a {
  display: inline-block;
  font-size: 20px;
  padding: 10px 10px 0;
  margin: 0 5px;
  border-bottom: 1px solid #fff; }

.wrapper-header-mare .header-mare .meniu-principal li .submeniu-wrapper a:hover {
  color: #e01b2f; }

.wrapper-header-mare .header-mare .meniu-principal li .submeniu-wrapper .submeniu a:hover {
  border-bottom: 1px solid #e01b2f; }

.wrapper-header-mare .header-mare .meniu-principal li .submeniu-wrapper .top3 {
  text-align: justify;
  padding: 30px 30px 20px; }

.wrapper-header-mare .header-mare .meniu-principal li .submeniu-wrapper .top3 a {
  display: inline-block;
  vertical-align: top;
  width: 32%;
  text-align: center; }

.wrapper-header-mare .header-mare .meniu-principal li .submeniu-wrapper .top3 a:hover {
  color: #e01b2f; }

.wrapper-header-mare .header-mare .meniu-principal li .submeniu-wrapper .top3 a img {
  width: 100%; }

.wrapper-header-mare .header-mare .meniu-principal li .submeniu-wrapper .top3 a:hover img {
  box-shadow: 0 3px 0 #e01b2f; }

.wrapper-header-mare .header-mare .meniu-principal li .submeniu-wrapper .top3 a h1 {
  text-transform: none;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700; }

.wrapper-header-mare .header-mare .meniu-si-search {
  position: absolute;
  right: 6px;
  top: 14px;
  background-color: #fff;
  height: 61px;
  z-index: 10; }

.wrapper-header-mare .header-mare .meniu-si-search .menu-button {
  display: inline-block;
  height: 61px;
  width: 56px;
  background-image: url(/assets/old/images/menu.png);
  vertical-align: top;
  border: 1px solid #fff;
  border-radius: 3px 3px 0 0;
  position: relative;
  cursor: pointer; }

.wrapper-header-mare .header-mare .meniu-si-search .menu-button:hover {
  border: 1px solid #ddd;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.1); }

.wrapper-header-mare .header-mare .meniu-si-search .menu-button .menu-wrapper {
  display: block;
  list-style-type: none;
  position: absolute;
  width: 225px;
  text-align: left;
  background-color: #fff;
  top: 59px;
  right: -1px;
  border: 1px solid #ddd;
  border-bottom: none;
  border-radius: 3px 0 3px 3px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  z-index: 9999; }

.wrapper-header-mare .header-mare .meniu-si-search .menu-button:hover .menu-wrapper {
  opacity: 1;
  height: auto; }

.wrapper-header-mare .header-mare .meniu-si-search .menu-button .menu-wrapper a {
  padding: 12px 20px;
  display: block;
  border-bottom: 1px solid #ddd;
  font-size: 20px;
  text-transform: uppercase; }

.wrapper-header-mare .header-mare .meniu-si-search .menu-button .menu-wrapper a:hover {
  color: #e01b2f;
  background-color: #f0f0f0; }

.menu-mobile-wrapper {
  display: none;
  position: absolute;
  top: 59px;
  right: -1px;
  border: 1px solid #ddd;
  border-bottom: none;
  border-radius: 3px 0 3px 3px;
  width: 400px;
  background-color: #fff;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.15); }

.menu-mobile-wrapper a:hover {
  color: #e01b2f; }

.menu-mobile-wrapper .categorie-mare {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  border-bottom: 1px solid #ddd;
  display: block;
  background-image: url(/assets/old/images/ddd.png);
  background-repeat: no-repeat;
  background-position: 16px 12px;
  padding: 10px 30px; }

.menu-mobile-wrapper .subcategorii {
  border-bottom: 1px solid #ddd;
  padding: 8px 25px 9px; }

.menu-mobile-wrapper .subcategorii a {
  padding: 0 5px;
  display: inline-block; }

.menu-mobile-wrapper .categorii-mici {
  border-bottom: 1px solid #ddd;
  text-transform: uppercase;
  padding: 13px 25px 14px; }

.menu-mobile-wrapper .categorii-mici a {
  padding: 0 5px;
  display: inline-block; }

.menu-mobile-wrapper .login {
  background-color: #ddd;
  display: block;
  padding: 12px 30px 16px; }

.wrapper-header-mare .header-mare .meniu-si-search .search-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  height: 61px;
  width: 56px;
  background-image: url(/assets/old/images/search.png);
  background-repeat: no-repeat;
  overflow: hidden;
  outline: none;
  -webkit-appearance: none;
  border: 0;
  top: 0;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
  font-size: 24px;
  padding-left: 56px;
  border: 1px solid #fff;
  border-radius: 3px; }

.wrapper-header-mare .header-mare .meniu-si-search .search-box:hover {
  width: 290px;
  position: absolute;
  right: 0;
  border: 1px solid #ddd;
  padding-right: 20px;
  box-shadow: -100px 0 15px #fff, inset 0 0 25px rgba(0, 0, 0, 0.1); }

.wrapper-header-mare .header-mare .meniu-si-search .search-box input {
  background: none;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
  font-size: 24px;
  position: absolute;
  top: 14px;
  left: 56px; }

.deschidere .stiri {
  height: 600px;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 0 #000; }

.deschidere .stiri.breaking .principala {
  left: 0; }

.deschidere .stiri.breaking .C1 {
  display: none; }

.deschidere .stiri .principala {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 312px;
  right: 312px;
  overflow: hidden; }

.deschidere .stiri .principala .positioner {
  height: 600px;
  width: 100%;
  position: relative; }

.deschidere .stiri .principala .positioner .poza {
  transition: all .5s ease;
  left: 50%;
  margin-left: -462px;
  position: absolute; }

.deschidere .stiri .principala:hover .positioner .poza {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04); }

.deschidere .stiri .principala .positioner .poza img {
  max-width: none; }

.deschidere .stiri .principala .positioner .text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 120px 37px 28px;
  background: #000;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(75%, rgba(0, 0, 0, 0.9)), color-stop(100%, rgba(0, 0, 0, 0.9)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9) 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#e6000000',GradientType=0 );
  transition: all .5s ease; }

.deschidere .stiri .principala:hover .positioner .text {
  padding: 120px 37px 38px; }

.deschidere .stiri .principala .positioner .text p {
  margin: 0;
  color: #fccf5c;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 7px;
  margin-bottom: 10px; }

.deschidere .stiri.breaking .principala .positioner .text p {
  background-color: #fccf5c;
  color: #333;
  text-shadow: none;
  border-bottom: 1px solid #fccf5c;
  font-size: 24px;
  padding: 5px 10px;
  width: auto;
  display: inline-block; }

.deschidere .stiri.breaking .principala .positioner .text h1 {
  color: #fccf5c;
  font-size: 36px;
  margin-bottom: 10px; }

.deschidere .stiri .principala .positioner .text h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.06;
  color: #fff;
  font-weight: bold; }

.deschidere .stiri .C1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px; }

.deschidere .stiri .C1 .secundara {
  display: block;
  width: 300px;
  height: 294px;
  margin-bottom: 12px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden; }

.deschidere .stiri .C1 .secundara .poza {
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: all .5s ease; }

.deschidere .stiri .C1 .secundara:hover .poza {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05); }

.deschidere .stiri .C1 .secundara .text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 20px 17px;
  background: #000;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(75%, rgba(0, 0, 0, 0.9)), color-stop(100%, rgba(0, 0, 0, 0.9)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9) 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#e6000000',GradientType=0 );
  transition: all .5s ease; }

.deschidere .stiri .C1 .secundara:hover .text {
  padding: 80px 20px 22px; }

.deschidere .stiri .C1 .secundara .text p {
  margin: 0;
  color: #fccf5c;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 4px;
  margin-bottom: 6px; }

.deschidere .stiri .C1 .secundara h1 {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
  color: #fff;
  font-weight: 700; }

.deschidere .stiri .C1 .secundara.livescore {
  background-image: url(/assets/old/images/bg-livescore-C1.jpg); }

.deschidere .stiri .C1 .secundara.livescore .minut {
  color: #fccf5c;
  border-radius: 3px;
  padding: 3px 0;
  margin: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  display: block;
  font-size: 20px; }

.deschidere .stiri .C1 .secundara.livescore .echipa {
  position: absolute;
  left: 10px;
  right: 20px;
  z-index: 30;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
  font-weight: bold;
  height: 63px;
  transition: all .5s ease; }

.deschidere .stiri .C1 .secundara.livescore .echipa.gazde {
  top: 80px; }

.deschidere .stiri .C1 .secundara.livescore .echipa.oaspeti {
  top: 153px; }

.deschidere .stiri .C1 .secundara.livescore:hover .echipa.gazde {
  top: 75px; }

.deschidere .stiri .C1 .secundara.livescore:hover .echipa.oaspeti {
  top: 158px; }

.deschidere .stiri .C1 .secundara.livescore .echipa img {
  width: 50px;
  height: 63px; }

.deschidere .stiri .C1 .secundara.livescore .echipa .nume-echipa {
  position: absolute;
  left: 55px;
  width: 65%;
  max-height: 54px;
  overflow: hidden; }

.deschidere .stiri .C1 .secundara.livescore .echipa.gazde .nume-echipa {
  bottom: 17px; }

.deschidere .stiri .C1 .secundara.livescore .echipa.oaspeti .nume-echipa {
  top: 17px; }

.deschidere .stiri .C1 .secundara.livescore .echipa .nr-goluri {
  position: absolute;
  right: 0;
  background-color: #fccf5c;
  width: 30px;
  text-align: center;
  padding: 3px 0;
  text-shadow: none;
  color: #333;
  border-radius: 3px; }

.deschidere .stiri .C1 .secundara.livescore .echipa.gazde .nr-goluri {
  bottom: 14px; }

.deschidere .stiri .C1 .secundara.livescore .echipa.oaspeti .nr-goluri {
  top: 14px; }

.deschidere .stiri .C1 .secundara.livescore .ultima-faza {
  position: absolute;
  color: #fff;
  left: 20px;
  right: 20px;
  bottom: 17px;
  font-size: 14px;
  line-height: 1.2;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 10px; }

.deschidere .stiri .C1 .secundara.livescore .ultima-faza .min {
  display: inline-block;
  width: 25px;
  vertical-align: top; }

.deschidere .stiri .C1 .secundara.livescore .ultima-faza p {
  display: inline-block;
  width: calc(100% - 30px);
  text-overflow: ellipsis;
  height: 18px;
  white-space: nowrap;
  overflow: hidden; }

.deschidere .stiri .banner300x600 {
  width: 300px;
  height: 600px;
  position: absolute;
  top: 0;
  right: 0; }

.echipe-liga1 {
  text-align: center;
  border-top: 1px solid #e5e5e5;
  height: 86px;
  background-color: #fff;
  margin-bottom: 0; }

.echipe-liga1 a {
  display: inline-block;
  height: 84px;
  width: 66px; }

.echipe-liga1 a:hover {
  background-color: #eee; }

.echipe-liga1 a img {
  width: 100%; }

.leaderboard {
  text-align: center;
  background-color: #fff;
  background-color: #f5f5f3;
  padding: 30px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd; }

.comentarii .leaderboard {
  padding: 0;
  background: none;
  border: none; }

.bg-gri {
  background-color: #f2f2ef; }

.blogsport {
  background-color: #262626;
  text-align: center;
  padding: 25px 0 10px;
  margin-top: -30px;
  overflow: hidden; }

.blogsport .header-box-blogsport {
  position: relative;
  width: 160%;
  margin-left: -30%; }

.blogsport .buton-prev, .blogsport .buton-next {
  color: #999;
  position: relative;
  display: inline-block;
  font-size: 60px;
  font-family: Georgia;
  top: 0;
  margin-top: -16px;
  height: 40px;
  line-height: 1;
  padding: 0 30px;
  text-shadow: 0 1px 0 #000; }

.blogsport .buton-prev:hover {
  color: #fff;
  padding: 0 40px 0 20px; }

.blogsport .buton-next:hover {
  color: #fff;
  padding: 0 20px 0 40px; }

.blogsport .posts-wrapper {
  width: 1236px;
  overflow: hidden;
  margin-top: 15px; }

.blogsport .posts-container {
  width: 1248px;
  margin-left: -6px;
  font-size: 0; }

.blogsport .postare {
  width: 300px;
  display: inline-block;
  margin: 0 6px;
  min-height: 200px;
  vertical-align: top; }

.blogsport .poza-si-autor {
  width: 100%;
  background-image: url(/assets/old/images/bg-poza-blogsport.png);
  height: 0;
  padding-bottom: 65%;
  position: relative; }

.blogsport .poza-si-autor > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; }

.blogsport .poza-si-autor .pozaautor-si-nume {
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 100%;
  text-align: center; }

.blogsport .poza-si-autor .pozaautor-si-nume img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 8px solid #262626; }

.blogsport .postare .poza-si-autor .pozaautor-si-nume p {
  color: #e01b2f;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  background-color: #fff;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  opacity: 0; }

.blogsport .postare:hover .poza-si-autor .pozaautor-si-nume p {
  margin-bottom: 8px;
  opacity: 1; }

.blogsport h1 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  padding: 0 10%;
  margin-bottom: 20px; }

.mysport {
  background-color: #fff;
  text-align: center;
  padding: 19px 0 10px;
  overflow: hidden; }

.mysport .header-box-mysport {
  position: relative;
  width: 160%;
  margin-left: -30%;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 10px;
  margin-bottom: 25px; }

.mysport .buton-prev, .mysport .buton-next {
  color: #ccc;
  position: relative;
  display: inline-block;
  font-size: 60px;
  font-family: Georgia;
  top: 0;
  margin-top: -9px;
  height: 40px;
  line-height: 1;
  padding: 0 30px; }

.mysport .buton-prev:hover {
  color: #e01b2f;
  padding: 0 40px 0 20px; }

.mysport .buton-next:hover {
  color: #e01b2f;
  padding: 0 20px 0 40px; }

.mysport .posts-wrapper {
  width: 1236px;
  overflow: hidden; }

.mysport .posts-container {
  width: 1248px;
  margin-left: -6px;
  font-size: 0; }

.mysport .postare {
  width: 300px;
  display: inline-block;
  margin: 0 6px;
  vertical-align: top;
  padding: 0 20px 10px; }

.mysport .postare img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin-bottom: 8px; }

.mysport .postare p {
  color: #e01b2f;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold; }

.mysport .postare h1 {
  font-size: 18px;
  line-height: 1.1;
  margin-top: 10px;
  font-weight: 700; }

.mysport .postare:hover h1 {
  color: #e01b2f; }

.calup-stiri {
  margin-bottom: 0; }

.calup-stiri .inside {
  text-align: justify;
  position: relative; }

.calup-stiri .C2 .stire .supratitlu {
  margin: 3px 5px 8px;
  font-size: 14px; }

.calup-stiri .C2 .stire .ora-si-comentarii {
  font-size: 14px;
  top: 15px; }

.calup-stiri .C2 .stire h1 {
  margin: 0 5px 12px;
  font-size: 24px;
  font-weight: bold; }

.calup-stiri .C2 .stire .wrapper-poza {
  width: 100%;
  height: 380px; }

.calup-stiri .C2 .stire .wrapper-poza .poza {
  left: 50%;
  margin-left: -294px;
  position: absolute; }

.calup-stiri .C2 .stire:hover .wrapper-poza .poza {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04); }

.calup-stiri .gazeta-digitala {
  padding: 17px 10px;
  background-image: url(/assets/old/images/bg-gazeta-digitala.png);
  background-repeat: no-repeat;
  background-position: 0 47px; }

.calup-stiri .gazeta-digitala a {
  padding: 10px 5px;
  display: block;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25; }

.calup-stiri .gazeta-digitala a:hover {
  color: #E01B2F; }

.calup-stiri .gazeta-digitala a:last-child {
  border-bottom: none; }

.calup-stiri .gazeta-digitala a.coperta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 4px 5px 0;
  border-bottom: none;
  margin-bottom: 10px; }

.calup-stiri .gazeta-digitala a.gazeta-digitala-logo {
  padding: 0 5px;
  border-bottom: none; }

.wrapper-outer {
  overflow: hidden;
  position: relative; }

.wrapper-inner {
  width: 20000px;
  padding-left: 55px; }

.marquee-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 45px; }

.marquee-livescore {
  background-color: #fff;
  font-size: 16px;
  padding: 3px 0;
  position: relative;
  margin: 0;
  vertical-align: top;
  height: 57px; }

.marquee-livescore hr {
  border-bottom: 1px dotted #ddd; }

.marquee-livescore .rezultat {
  display: inline-block;
  margin: 10px 0px;
  font-weight: 700;
  padding: 5px 20px 6px;
  cursor: default;
  border-radius: 3px; }

.marquee-livescore .rezultat strong {
  margin: 0 5px;
  color: #ffba00;
  padding: 0 5px 1px;
  border-radius: 3px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25); }

.marquee-livescore .rezultat:hover {
  background: #f2f2ef; }

.marquee-livescore .rezultat:hover strong {
  background: #fff;
  box-shadow: none; }

.marquee-container .cap-tabel {
  position: absolute;
  left: 0;
  background: #fff;
  font-weight: 700;
  color: #e01b2f;
  box-shadow: 0 0 20px 10px #fff;
  padding: 21px 20px 19px;
  font-size: 12px;
  text-transform: uppercase;
  z-index: 998; }

.zona-livescore {
  background-color: #fff;
  font-size: 16px;
  padding: 3px 0; }

.zona-livescore .inside {
  width: 100%;
  overflow: hidden; }

.lvsc-rezultate {
  padding: 15px 0 8px 0;
  position: relative;
  width: 10000px;
  overflow: hidden;
  height: 61px; }

.zona-livescore hr {
  border-bottom: 1px dotted #ddd; }

.lvsc-rezultate .cap-tabel {
  position: absolute;
  left: 0;
  background: #fff;
  font-weight: 700;
  color: #e01b2f;
  box-shadow: 0 0 20px 10px #fff;
  padding: 8px 20px;
  font-size: 12px;
  text-transform: uppercase; }

.lvsc-rezultate .rezultat {
  display: inline-block;
  margin: 0 0px 20px;
  font-weight: 700;
  padding: 5px 15px 6px;
  cursor: default;
  border-radius: 3px; }

.lvsc-rezultate .rezultat strong {
  margin: 0 5px;
  color: #ffba00;
  padding: 0 5px 1px;
  border-radius: 3px; }

.lvsc-rezultate .rezultat:hover {
  background: #f2f2ef; }

.lvsc-rezultate .rezultat:hover strong {
  background: #fff; }

.ticker-livescore {
  background-color: #fff; }

.ticker-livescore .buton-prev, .ticker-livescore .buton-next {
  font-size: 60px;
  line-height: 1;
  padding-top: 11px;
  font-family: Georgia;
  display: block;
  position: absolute;
  height: 93px;
  top: 0;
  z-index: 99;
  color: #ccc; }

.ticker-livescore .buton-prev:hover, .ticker-livescore .buton-next:hover {
  color: #e01b2f; }

.ticker-livescore .buton-prev {
  background: linear-gradient(to right, white 0%, white 70%, rgba(255, 255, 255, 0) 100%);
  padding-left: 15px;
  padding-right: 40px;
  left: 0; }

.ticker-livescore .buton-prev:hover {
  padding-left: 10px;
  padding-right: 45px; }

.ticker-livescore .buton-next {
  background: linear-gradient(to left, white 0%, white 70%, rgba(255, 255, 255, 0) 100%);
  padding-left: 40px;
  padding-right: 15px;
  right: 0; }

.ticker-livescore .buton-next:hover {
  padding-left: 45px;
  padding-right: 10px; }

.ticker-livescore .inside {
  width: 100%; }

.ticker-livescore .rezultat {
  width: 205px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.1;
  position: relative;
  display: inline-block;
  padding: 0 20px;
  height: 93px;
  cursor: default; }

.ticker-livescore .rezultat:hover {
  background-color: #f2f2ef; }

.ticker-livescore .rezultat .competitie {
  font-size: 12px;
  text-transform: uppercase;
  color: #e01b2f;
  margin-top: 17px;
  margin-bottom: 5px; }

.ticker-livescore .rezultat .meci {
  max-width: 150px;
  overflow: hidden;
  margin-bottom: 16px; }

.ticker-livescore .rezultat .scor {
  position: absolute;
  top: 35px;
  right: 20px;
  text-align: right; }

.utile {
  margin-bottom: 0; }

.utile .inside {
  text-align: justify; }

.utile .C1 .table-container {
  max-height: 400px;
  overflow: scroll;
  overflow-x: auto;
  margin-top: 18px;
  box-shadow: inset 0 1px 0 #ddd; }

.utile .C1 table {
  width: 100%; }

.utile .C1 table tr:hover {
  background: #fff;
  cursor: default; }

.utile .C1 table td {
  padding: 11px 0 10px;
  border-top: 1px solid #ddd; }

.utile .C1 table tr td:first-child {
  width: 51px;
  text-align: center; }

.utile .C1 table tr td:last-child {
  padding: 11px 10px 10px; }

.utile .C1 table h6 {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 2px; }

.utile .C1 table p {
  font-size: 18px;
  line-height: 1.1; }

.utile .box-cu-bulina > a {
  color: #e01b2f;
  padding: 15px 0 10px 8px;
  border-top: 1px solid #ddd;
  width: 100%;
  display: block;
  font-size: 18px; }

.utile .box-cu-bulina > a:hover {
  text-decoration: underline; }

.statistici {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  padding-bottom: 10px;
  position: relative; }

.statistici .competitii-wrapper {
  height: 38px;
  overflow: hidden;
  position: relative; }

.statistici .meniu-competitii {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to right, rgba(250, 250, 250, 0) 0%, #fafafa 25%, #fafafa 100%);
  height: 37px;
  width: 80px;
  text-align: right;
  z-index: 99; }

.statistici .meniu-competitii .menu-button {
  display: inline-block;
  padding: 4px 15px;
  cursor: pointer; }

.statistici .meniu-competitii .menu-button:hover {
  background-color: #eee; }

.statistici .meniu-competitii img {
  height: 31px; }

.statistici .meniu-competitii ul {
  position: absolute;
  top: 38px;
  right: 0;
  background: #fff;
  list-style-type: none;
  width: 140px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  opacity: 0;
  height: 0; }

.statistici .meniu-competitii:hover ul {
  opacity: 1;
  height: auto; }

.statistici .meniu-competitii ul li a {
  display: block;
  font-size: 12px;
  line-height: 1;
  color: #999;
  text-transform: uppercase;
  font-weight: bold;
  padding: 12px 20px 10px;
  border-bottom: 1px solid #eee;
  background-color: #fafafa; }

.statistici .meniu-competitii ul li a:hover {
  color: #e01b2f; }

.statistici .competitii {
  list-style-type: none;
  border-bottom: 1px solid #eee;
  background-color: #fafafa;
  width: 1000px;
  font-size: 0; }

.statistici .competitii li {
  display: inline-block; }

.statistici .competitii li a {
  display: block;
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  font-weight: bold;
  padding: 12px 20px 10px;
  border-right: 1px solid #eee; }

.statistici .competitii li a.selectat {
  color: #e01b2f;
  background-color: #fff;
  box-shadow: 0 1px 0 #fff; }

.statistici .competitii li a:hover {
  color: #e01b2f; }

.statistici .competitie {
  position: relative;
  text-align: right;
  height: 49px;
  padding-right: 10px; }

.statistici .competitie h3 {
  position: absolute;
  top: 8px;
  left: 18px;
  margin: 0;
  padding: 0;
  font-weight: 300;
  font-size: 24px; }

.statistici .competitie a {
  font-size: 18px;
  display: inline-block;
  padding: 13px 10px; }

.statistici .competitie a.selectat {
  color: #e01b2f; }

.statistici .competitie a:hover {
  text-decoration: underline; }

.statistici .etape {
  padding: 10px;
  color: #888;
  font-size: 14px;
  border-top: 1px solid #ddd;
  margin: 0 10px;
  text-align: center; }

.statistici .etape a {
  color: #333;
  font-weight: 400; }

.statistici .etape a:hover {
  text-decoration: underline; }

.statistici .etape a.selectat {
  color: #e01b2f;
  font-weight: 400; }

.statistici .etape a.nejucata {
  color: #888;
  font-weight: 300; }

.statistici .rez-prog {
  margin: 0 10px;
  width: calc(100% - 20px); }

.statistici .rez-prog tr {
  border-top: 1px solid #ddd; }

.statistici .rez-prog tr:hover {
  background-image: url(/assets/old/images/pattern-hover.png);
  cursor: default; }

.statistici .rez-prog td {
  vertical-align: top;
  padding: 5px 10px; }

.statistici .rez-prog .data-ora {
  text-align: left;
  font-size: 14px;
  vertical-align: middle;
  width: 18%; }

.statistici .rez-prog .gazde {
  text-align: right;
  padding-top: 15px;
  font-weight: 700;
  width: 26.6%; }

.statistici .rez-prog .gazde img {
  margin-left: 6px; }

.statistici .rez-prog .gazde .goluri {
  font-size: 11px;
  font-weight: 400;
  padding: 3px 0 8px; }

.statistici .rez-prog .gazde .goluri a {
  text-transform: uppercase;
  color: #e01b2f;
  font-size: 10px; }

.statistici .rez-prog .gazde .goluri a:hover {
  text-decoration: underline; }

.statistici .rez-prog .scor-gazde, .statistici .rez-prog .scor-oaspeti {
  text-align: center;
  font-weight: 700;
  width: 5.4%;
  padding: 10px 1px; }

.statistici .rez-prog .scor-gazde a, .statistici .rez-prog .scor-oaspeti a {
  display: inline-block;
  padding: 5px 0;
  width: 30px;
  background: #fccf5c; }

.statistici .rez-prog .oaspeti {
  text-align: left;
  padding-top: 15px;
  font-weight: 700;
  width: 26.6%; }

.statistici .rez-prog .oaspeti img {
  margin-right: 6px; }

.statistici .rez-prog .oaspeti .goluri {
  font-size: 11px;
  font-weight: 400;
  padding: 3px 0 8px; }

.statistici .rez-prog .oaspeti .goluri a {
  text-transform: uppercase;
  color: #e01b2f;
  font-size: 10px; }

.statistici .rez-prog .oaspeti .goluri a:hover {
  text-decoration: underline; }

.statistici .rez-prog .detalii {
  text-align: right;
  font-size: 14px;
  vertical-align: middle;
  width: 18%; }

.statistici .rez-prog .detalii a {
  color: #e01b2f; }

.statistici .rez-prog .detalii a:hover {
  text-decoration: underline; }

.statistici .live {
  background: #fccf5c; }

.statistici .rez-prog .live .scor-gazde a, .statistici .rez-prog .live .scor-oaspeti a {
  background: #fff; }

.statistici .rez-prog .live .detalii a {
  font-weight: 700; }

.statistici .rez-prog .nejucat .scor-gazde a, .statistici .rez-prog .nejucat .scor-oaspeti a {
  background: #eee; }

.statistici .clasament {
  width: calc(100% - 20px);
  margin: 0 10px; }

.statistici .clasament thead {
  font-size: 12px;
  color: #999;
  font-weight: bold; }

.statistici .clasament tr {
  border-top: 1px solid #ddd; }

.statistici .clasament tr:hover {
  background-image: url(/assets/old/images/pattern-hover.png);
  cursor: default; }

.statistici .clasament thead tr:hover {
  background-image: none;
  cursor: default; }

.statistici .clasament tr.calificate1 {
  background-color: rgba(113, 255, 0, 0.1); }

.statistici .clasament tr.calificate2 {
  background-color: rgba(255, 237, 0, 0.1); }

.statistici .clasament tr.retrogradate {
  background-color: rgba(255, 0, 4, 0.05); }

.statistici .clasament td {
  text-align: center;
  height: 36px; }

.statistici .clasament .loc {
  width: 43px;
  padding-right: 8px; }

.statistici .clasament .echipa {
  font-weight: bold;
  text-align: left; }

.statistici .clasament .sigla {
  width: 31px;
  padding-right: 5px; }

.statistici .clasament .meciuri {
  width: 50px; }

.statistici .clasament .golaveraj {
  width: 96px; }

.statistici .clasament .pct {
  font-weight: bold;
  width: 43px;
  padding-left: 4px; }

.best-of-today a {
  display: block;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.15;
  padding: 12px 0;
  border-bottom: 1px solid #ddd; }

.best-of-today a:hover {
  color: #E01B2F; }

.best-of-today a:last-child {
  border-bottom: none; }

.best-of-today a img {
  margin-bottom: 8px; }

.best-of-today a span {
  float: left;
  font-size: 30px;
  font-weight: 300;
  margin-top: -3px;
  padding: 0 8px 0 0; }

.best-of-today a:hover span {
  color: #333; }

.parteneri {
  background-color: #f5f5f3;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd; }

.parteneri .nume-parteneri {
  text-align: left;
  font-size: 0;
  margin-bottom: 20px; }

.parteneri .nume-parteneri p {
  margin: 0;
  display: inline-block;
  text-align: center;
  vertical-align: bottom;
  text-transform: uppercase;
  padding: 20px 0 10px;
  border-bottom: 1px dashed #bbb;
  color: #E01B2F;
  font-weight: 300;
  font-size: 20px;
  margin-right: 12px; }

.parteneri .nume-parteneri p:nth-last-child(2) {
  margin-right: 0; }

.parteneri .nume-parteneri p.banner {
  border-bottom: 1px dashed rgba(0, 0, 0, 0); }

.parteneri .nume-parteneri p.span1 {
  width: 300px; }

.parteneri .nume-parteneri p.span2 {
  width: 612px; }

.parteneri .nume-parteneri p.span3 {
  width: 924px; }

.parteneri .nume-parteneri p.span4 {
  width: 1236px; }

.parteneri .boxuri-parteneri {
  text-align: justify;
  margin-top: -20px; }

.parteneri .boxuri-parteneri .box-partener {
  display: inline-block;
  width: 300px;
  vertical-align: top;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.1; }

.parteneri .boxuri-parteneri .box-partener a {
  padding: 15px 0 15px;
  display: block;
  text-align: center;
  border-bottom: 1px solid #ddd; }

.parteneri .boxuri-parteneri .box-partener a:last-child {
  border-bottom: none;
  padding-bottom: 10px; }

.parteneri .boxuri-parteneri .box-partener a:hover {
  color: #E01B2F; }

.parteneri .boxuri-parteneri .box-partener a img {
  width: 100%;
  margin-bottom: 12px;
  height: 195px; }

.parteneri .boxuri-parteneri .box-partener a:hover img {
  box-shadow: 0 3px 0 #e01b2f; }

.parteneri .boxuri-parteneri .box-partener a p {
  padding: 0 10px; }

.sectiune .foto-zilei {
  width: 924px;
  display: inline-block;
  vertical-align: top;
  height: 600px;
  position: relative;
  overflow: hidden;
  text-align: left;
  margin-bottom: 10px; }

.sectiune .foto-zilei .poza {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  transition: all .5s ease; }

.sectiune .foto-zilei:hover .poza {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04); }

.sectiune .foto-zilei .text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 100px 50px 25px;
  text-shadow: 0 1px 0 #000;
  background: #000;
  transition: all .5s ease;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(75%, rgba(0, 0, 0, 0.9)), color-stop(100%, rgba(0, 0, 0, 0.9)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9) 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#e6000000',GradientType=0 ); }

.sectiune .foto-zilei:hover .text {
  padding: 100px 50px 35px; }

.sectiune .foto-zilei .text p {
  color: #fccf5c;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25); }

.sectiune .foto-zilei .text h2 {
  color: #fff;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.25; }

.box-cu-bulina {
  padding: 16px 12px 12px;
  position: relative; }

.bulina {
  position: absolute;
  height: 51px;
  width: 51px;
  background-color: #fccf5c;
  border-radius: 50%;
  top: 0;
  left: 10px; }

.header-box-cu-bulina {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  z-index: 2;
  position: relative;
  margin-left: 20px;
  display: block;
  letter-spacing: -.5px; }

.box-cu-bulina .sageti {
  position: absolute;
  right: 20px;
  top: 86px;
  font-family: Georgia;
  font-size: 20px;
  width: 100px;
  text-align: right; }

.box-cu-bulina .sageti .buton-prev, .box-cu-bulina .sageti .buton-next {
  display: inline-block;
  padding: 10px 5px; }

.box-cu-bulina .sageti .buton-prev:hover, .box-cu-bulina .sageti .buton-next:hover {
  color: #e01b2f; }

.box-cu-bulina .ziar {
  border-top: 1px solid #ddd;
  margin-top: 20px; }

.box-cu-bulina .ziar p {
  padding: 15px 12px;
  font-weight: bold;
  font-size: 12px;
  color: #e01b2f;
  text-transform: uppercase; }

.box-cu-bulina .zilele-saptamanii {
  position: absolute;
  top: 0;
  right: 17px;
  font-size: 0;
  z-index: 99; }

.box-cu-bulina .zilele-saptamanii a {
  padding: 18px 3px;
  display: inline-block;
  font-size: 18px; }

.box-cu-bulina .zilele-saptamanii a:hover {
  text-decoration: underline; }

.box-cu-bulina .zilele-saptamanii a.selectat {
  color: #e01b2f; }

.box-cu-bulina .cele-mai {
  position: relative;
  font-size: 0;
  z-index: 99;
  border-top: 1px solid #ddd;
  margin-top: 18px;
  width: 100%;
  text-align: justify; }

.box-cu-bulina .cele-mai a {
  padding: 10px 5px 2px;
  display: inline-block;
  font-size: 18px; }

.box-cu-bulina .cele-mai a:hover {
  text-decoration: underline; }

.box-cu-bulina .cele-mai a.selectat {
  color: #e01b2f; }

.citate {
  text-align: center;
  margin-top: 30px; }

.citate p {
  font-family: 'Merriweather', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 12px; }

.citate span {
  font-size: 14px;
  line-height: 1.1;
  font-weight: bold;
  color: #e01b2f;
  text-transform: uppercase;
  display: block;
  margin-bottom: 17px; }

.citate .citat {
  position: relative; }

.citate .citat .overlay-share {
  position: absolute;
  display: table-cell;
  vertical-align: middle;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, #f2f2ef 100%);
  opacity: 0;
  padding-top: 20px; }

.citate .citat:hover .overlay-share {
  opacity: 1; }

.citate .citat:first-child {
  margin-bottom: 25px;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); }

.citate .butoane-share {
  margin-bottom: 30px; }

.dezbaterea-zilei > .butoane-share {
  padding: 15px 0 10px 8px; }

.citat > .butoane-share .buton-share, .dezbaterea-zilei > .butoane-share .buton-share {
  height: 25px;
  background-size: auto 25px;
  background-position: -2px; }

.citat > .butoane-share .buton-share.facebook, .dezbaterea-zilei > .butoane-share .buton-share.facebook {
  width: 122px;
  background-position: 0; }

.citat > .butoane-share .buton-share.twitter, .dezbaterea-zilei > .butoane-share .buton-share.twitter {
  width: 25px; }

.citat > .butoane-share .buton-share.googleplus, .dezbaterea-zilei > .butoane-share .buton-share.googleplus {
  width: 25px; }

.citat > .butoane-share .buton-share.email, .dezbaterea-zilei > .butoane-share .buton-share.email {
  width: 25px; }

.calup-stiri .C2 .stire.dezbaterea-zilei .supratitlu {
  font-size: 36px;
  font-weight: 300;
  color: #ffba00;
  letter-spacing: -1px;
  margin-top: 6px; }

.calup-stiri .C2 .stire.dezbaterea-zilei .ora-si-comentarii {
  font-size: 36px;
  font-weight: 300;
  top: 18px;
  right: 20px; }

.sectiune .stire.dezbaterea-zilei .ora-si-comentarii img {
  margin-top: 6px; }

.video-feature {
  overflow: hidden;
  position: relative;
  height: 294px; }

.video-feature .poza {
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 300px;
  height: 294px;
  transition: all .5s ease; }

.video-feature:hover .poza {
  width: 320px;
  margin-left: -10px;
  height: 304px; }

.video-feature .text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 20px 17px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9) 100%);
  transition: all .5s ease; }

.video-feature:hover .text {
  padding: 80px 20px 22px; }

.video-feature .text p {
  margin: 0;
  color: #fccf5c;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 4px;
  margin-bottom: 6px; }

.video-feature h1 {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
  color: #fff; }

/*.bg-gri .leaderboard {
	background-color:#f5f5f3;
	padding:30px 0;
	border-top:1px solid #ddd;
	border-bottom:1px solid #ddd;
}*/
.taburi-mobile {
  display: none; }

.footer {
  text-align: center;
  padding-bottom: 30px;
  font-size: 16px;
  line-height: 1.5; }

.footer p {
  margin-bottom: 15px; }

.footer a {
  color: #e01b2f; }

.footer a:hover {
  text-decoration: underline; }

.footer p:first-child a {
  font-weight: bold; }

/*  PAGINA ARTICOL  */
.submeniu-articol {
  list-style-type: none;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: center;
  line-height: 1;
  padding: 14px 0 18px; }

.submeniu-articol li {
  display: inline-block; }

.submeniu-articol li a {
  font-size: 20px;
  padding: 8px 9px 4px;
  text-transform: uppercase;
  display: block;
  border-bottom: 1px solid #fff; }

.submeniu-articol li a:hover {
  color: #e01b2f;
  border-bottom: 1px solid #e01b2f; }

.submeniu-articol li a.selectat {
  color: #e01b2f; }

.articol .titlu {
  border: 0;
  margin: 0;
  padding: 0;
  width: 100%; }

.articol td {
  padding: 12px 25px;
  padding-left: 0; }

.articol .next-art {
  width: 300px;
  border-left: 1px solid #ddd;
  padding: 15px 25px; }

.articol .next-art-banner {
  width: 300px;
  padding: 0;
  min-height: 250px; }

.articol .titlu p {
  color: #e01b2f;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 10px; }

.articol .titlu h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  padding-bottom: 5px;
  letter-spacing: -.5px; }

.articol .titlu span {
  font-size: 24px;
  display: block;
  margin-top: 10px; }

.articol .titlu .next-art p {
  font-size: 12px;
  line-height: 1.05; }

.articol .titlu .next-art h1 {
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: 0;
  padding-bottom: 0;
  font-weight: 700; }

.articol .titlu a:hover h1 {
  color: #e01b2f; }

.articol .titlu a:hover span {
  color: #e01b2f; }

.articol .poza-articol {
  width: 100%;
  position: relative;
  margin: 20px 0 35px; }

.articol .poza-articol .poza {
  height: 600px;
  width: 924px;
  background-color: #f2f2ef;
  overflow: hidden;
  text-align: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative; }

.articol .poza-articol .poza > img {
  max-height: 100%;
  max-width: 100%;
  /*height:100%;*/ }

.articol .poza-articol .poza .link-galerie-foto {
  position: absolute;
  bottom: 25px;
  right: 25px;
  display: block;
  color: #fff;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  font-weight: 300;
  font-size: 30px;
  z-index: 51; }

.articol .poza-articol .poza .link-galerie-foto:hover {
  background-color: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.95); }

.articol .poza-articol .poza .prev-photo, .galerie .prev-photo {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 75%;
  z-index: 50;
  cursor: url(/assets/old/images/prev-photo.png), w-resize;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%); }

.articol .poza-articol .poza .next-photo, .galerie .next-photo {
  position: absolute;
  top: 0;
  left: 25%;
  bottom: 0;
  right: 0;
  z-index: 50;
  cursor: url(/assets/old/images/next-photo.png), e-resize;
  background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%); }

.articol .poza-articol p {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 300;
  font-size: 16px;
  font-style: italic;
  width: 924px;
  border-bottom: 1px solid #ddd;
  padding: 10px 0; }

.articol .banner300x600 {
  position: absolute;
  right: 0;
  top: 0; }

.articol .text-articol {
  padding: 0 332px;
  position: relative; }

.articol .text-articol p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px; }

.articol .text-articol ul, .articol .text-articol ol {
  margin-bottom: 20px;
  list-style-position: outside;
  margin-left: 30px; }

.articol .text-articol ul {
  list-style-type: circle; }

.articol .text-articol ul li, .articol .text-articol ol li {
  font-size: 20px;
  line-height: 1.6; }

.articol.scurt .text-articol ul li, .articol.scurt .text-articol ol li {
  font-size: 24px; }

.articol .text-articol p a {
  color: #E01B2F;
  font-weight: 400; }

.articol .text-articol p strong a {
  font-weight: bold; }

.articol .text-articol p a:hover {
  border-bottom: 1px dotted #E01B2F; }

.articol .text-articol p .highlighted {
  border-bottom: 1px solid #ffce4d;
  box-shadow: inset 0 -4px 0 #ffce4d; }

.articol .text-articol h2 {
  font-weight: 300;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin: 45px 0 20px;
  max-width: 800px;
  border-bottom: 5px solid #eee;
  padding-bottom: 8px; }

.articol .text-articol h3 {
  font-size: 24px;
  margin-top: 45px;
  text-transform: uppercase;
  font-weight: 300; }

.articol .text-articol h6 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  margin: 30px 0 10px;
  padding-bottom: 5px;
  color: #E01B2F; }

.articol .text-articol table {
  font-size: 20px;
  width: 100%;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); }

.articol .text-articol table thead {
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase; }

.articol .text-articol table tr:hover {
  background-color: #f8f8f8;
  cursor: default; }

.articol .text-articol table thead tr:hover {
  background-color: transparent;
  cursor: default; }

.articol .text-articol table td {
  border-top: 1px solid #ddd;
  padding: 10px 15px; }

.articol .text-articol table thead td {
  border-top: none;
  border-bottom: 5px solid #eee; }

.articol .text-articol blockquote {
  font-family: 'Merriweather', Georgia, serif;
  font-style: italic;
  line-height: 1.6;
  font-weight: 300;
  font-size: 19px;
  margin: 35px auto;
  width: 90%;
  text-align: left;
  border: none;
  padding: 0; }

.articol .text-articol blockquote .semnatura {
  display: inline-block;
  font-family: 'Source Sans Pro', sans-serif;
  margin-top: 8px; }

.articol .text-articol blockquote .semnatura::before {
  content: "\2014\00a0"; }

.articol .text-articol .cifra {
  width: 90%;
  margin: 30px auto 45px; }

.articol .text-articol .cifra .numar {
  display: block;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  color: #ffba00;
  margin-bottom: 5px; }

.articol .text-articol .cifra .descriere-numar {
  display: block;
  line-height: 1.2;
  font-weight: 700; }

.articol .text-articol .fb-post {
  margin-bottom: 20px; }

.articol .text-articol .comentariu-embed {
  padding: 30px 30px 10px;
  margin: 25px 0 30px;
  font-size: 14px;
  background-color: #f8f8f8;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.05); }

.articol .text-articol .comentariu-embed .avatar {
  border-radius: 50%;
  overflow: hidden;
  width: 60px;
  height: 60px;
  float: left;
  margin: 0 20px 10px 0; }

.articol .text-articol .comentariu-embed .nume-detalii {
  color: #888;
  margin: 5px 0 30px;
  line-height: 1.3; }

.articol .text-articol .comentariu-embed .nume-detalii strong {
  color: #333; }

.articol .text-articol .comentariu-embed p {
  font-size: 18px; }

.sondaj {
  margin: 30px 0 40px;
  text-align: left; }

.sondaj .intrebare {
  font-weight: bold !important;
  background-image: url(/assets/old/images/sondaj.png);
  background-repeat: no-repeat;
  padding-left: 30px;
  background-position: 0 4px;
  line-height: 1.2 !important;
  font-size: 20px;
  margin-bottom: 20px; }

.C1 .sondaj .intrebare {
  font-size: 16px;
  margin-bottom: 10px; }

.sondaj .optiune {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
  padding: 10px 10px 10px 30px;
  box-shadow: inset 0 -1px 0 #ddd;
  position: relative;
  z-index: 10; }

.C1 .sondaj .optiune {
  font-size: 16px;
  padding: 5px 10px 5px 30px; }

.sondaj .optiune:hover {
  background-color: #f8f8f8;
  padding-left: 40px; }

.sondaj .optiune:active {
  background-color: #ffce4d;
  padding-left: 14px; }

.sondaj .optiune .check {
  opacity: .25;
  position: absolute;
  left: 3px; }

.sondaj .optiune:hover .check {
  opacity: 1;
  left: 20px; }

.sondaj.rezultate .optiune.selectat, .sondaj.rezultate .optiune.selectat:hover {
  font-weight: bold;
  padding-left: 40px; }

.sondaj.rezultate .optiune {
  background: #f8f8f8;
  cursor: default;
  box-shadow: none;
  padding-right: 40%;
  padding-left: 30px; }

.C1 .sondaj.rezultate .optiune {
  padding-right: 15px; }

.sondaj.rezultate .optiune:hover {
  background-color: #eee; }

.sondaj.rezultate .optiune .check {
  display: none; }

.sondaj.rezultate .optiune.selectat .check {
  display: inline-block;
  opacity: 1;
  left: 20px; }

.sondaj.rezultate .optiune:hover .check {
  display: none; }

.sondaj.rezultate .optiune.selectat:hover .check {
  display: inline-block;
  opacity: 1;
  margin: 0 4px 0 0; }

.sondaj.rezultate .optiune .procentaj {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: #ffce4d;
  z-index: -1; }

.sondaj.rezultate .optiune:hover .procentaj {
  background-color: #ffba00; }

.sondaj.rezultate .optiune .procent-voturi {
  display: inline-block;
  margin-left: 20px;
  font-size: 16px;
  position: absolute;
  right: 20px;
  top: 13px; }

.C1 .sondaj.rezultate .optiune .procent-voturi {
  position: relative;
  display: block;
  margin: 0;
  right: auto;
  top: auto;
  font-size: 14px; }

.sondaj .total {
  text-align: right;
  font-size: 16px !important;
  padding-right: 20px;
  margin-top: 16px;
  font-weight: bold !important;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px; }

.C1 .sondaj .total {
  text-align: left;
  padding-right: 10px;
  padding-left: 30px;
  padding-bottom: 10px;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 14px !important; }

.C1 .sondaj, .C2 .sondaj {
  padding: 22px 20px 20px;
  background-color: #fff;
  margin: -12px 0 12px; }

.C1 .sondaj {
  padding: 15px 15px 10px; }

.articol .text-articol > img, .articol .text-articol .update img {
  margin-bottom: 20px; }

.articol .text-articol .update:hover {
  background-color: #f2f2ef;
  box-shadow: 0 0 0 15px #f2f2ef;
  cursor: default; }

.video-container {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%; }

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.video-container-wrapper {
  padding-bottom: 20px; }

.articol.scurt .text-articol p {
  font-size: 24px; }

.articol .text-articol p.data-autor {
  font-size: 16px;
  color: #959595; }

.articol .text-articol .banner1 {
  position: absolute;
  top: 0;
  left: 0; }

.articol .text-articol .banner-articol-special {
  display: none; }

.articol .text-articol .banner2 {
  position: absolute;
  bottom: 0;
  left: 0; }

.articol.scurt .text-articol .banner2 {
  display: none; }

.articol .text-articol .banner3 {
  position: absolute;
  bottom: 0;
  right: 0; }

.articol.scurt .text-articol .banner3 {
  display: none; }

.articol .text-articol .banner728-tableta {
  display: none; }

.text-articol .butoane-share {
  margin-bottom: 27px;
  position: relative; }

.text-articol .butoane-share .buton-share {
  margin-bottom: 3px; }

.text-articol .butoane-share .buton-share.twitter {
  width: 35px;
  background-position: -3px; }

.text-articol .butoane-share .buton-share.googleplus {
  width: 35px;
  background-position: -3px; }

.text-articol .butoane-share .buton-share.email {
  width: 35px;
  background-position: -3px; }

.text-articol .butoane-share .buton-share.buton-comentarii {
  background-image: url(/assets/old/images/comment-mare-share.png);
  background-repeat: no-repeat;
  background-position: 12px 12px;
  background-color: #FFCE4D;
  padding: 7px 15px 5px 35px;
  font-weight: 400; }

.text-articol .taguri {
  margin-bottom: 35px; }

.text-articol .taguri a {
  display: inline-block;
  background-color: #eee;
  background-image: url(/assets/old/images/tag.png);
  background-repeat: no-repeat;
  background-position: 10px 8px;
  padding: 3px 12px 5px 28px;
  border-radius: 20px;
  font-weight: 700;
  margin-top: 10px; }

.text-articol .taguri a:hover {
  background-color: #fccf5c; }

.related .parteneri {
  border: none;
  background-color: transparent; }

.comentarii {
  padding-top: 15px; }

.comentarii h2 {
  display: block;
  width: 872px;
  margin: 0 auto 40px;
  padding-left: 150px;
  font-size: 36px;
  color: #e01b2f;
  position: relative;
  letter-spacing: -.5px;
  font-weight: 700; }

.comentarii h2 a {
  display: block;
  width: 226px;
  margin-top: 20px;
  text-align: center;
  padding: 8px 20px 8px;
  background-color: #fccf5c;
  font-size: 20px;
  font-weight: 300;
  font-family: 'Source Sans Pro', sans-serif;
  color: #444;
  border-radius: 5px;
  text-transform: none;
  letter-spacing: 0;
  color: #000; }

.comentarii h2 a:hover {
  background-color: #e01b2f;
  color: #fff; }

.comentarii h2 a:active {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15); }

.comentarii .sortare {
  list-style-type: none;
  text-align: left;
  font-size: 0;
  text-transform: uppercase;
  margin: 0 150px 0 150px;
  position: relative; }

.comentarii .sortare li {
  display: inline-block;
  margin: 0 10px -1px 0; }

.comentarii .sortare li a {
  display: block;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px 5px 0 0;
  padding: 15px 40px 13px; }

.comentarii .sortare li a:hover {
  color: #e01b2f;
  background-color: #f8f8f8; }

.comentarii .sortare li a.selectat {
  border-bottom: 1px solid #fff; }

.comentarii .sortare li a.selectat:hover {
  background: none;
  color: inherit;
  cursor: default; }

.comentarii .comentariu {
  max-width: 872px;
  width: 100%;
  margin: 0 auto 40px;
  position: relative; }

.comentarii .comentariu.sortare-wrapper {
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
  position: relative; }

.comentarii .comentariu.oficial {
  background-color: rgba(224, 65, 27, 0.1);
  box-shadow: -20px 0 0 rgba(224, 65, 27, 0.1), 20px 0 0 rgba(224, 65, 27, 0.1);
  padding: 20px 0; }

.comentarii .comentariu.valoros {
  background-color: rgba(252, 207, 92, 0.25);
  box-shadow: -20px 0 0 rgba(252, 207, 92, 0.25), 20px 0 0 rgba(252, 207, 92, 0.25);
  padding: 20px 0; }

.comentarii .comentariu .avatar {
  position: absolute;
  top: 6px;
  left: 50px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden; }

.comentarii .comentariu.oficial .avatar,
.comentarii .comentariu.valoros .avatar {
  top: 26px; }

.comentarii .comentariu p {
  display: block;
  margin: 0 150px 0 150px;
  font-size: 18px;
  line-height: 1.45; }

.comentarii .comentariu.oficial p,
.comentarii .comentariu.valoros p {
  color: #444; }

.comentarii .comentariu p.nume-detalii {
  color: #888;
  margin-bottom: 10px; }

.comentarii .comentariu .nume-detalii strong {
  font-weight: 700;
  color: #444; }

.comentarii .comentariu .reply-like-report {
  position: absolute;
  top: 0;
  right: 150px;
  font-size: 0; }

.comentarii .comentariu.oficial .reply-like-report,
.comentarii .comentariu.valoros .reply-like-report {
  top: 20px; }

.comentarii .comentariu .reply-like-report a.reply {
  display: inline-block;
  position: relative;
  width: 28px;
  height: 27px;
  background-image: url(/assets/old/images/reply-like-report.png);
  background-position: 0;
  transition: none; }

.comentarii .comentariu .reply-like-report a.like {
  display: inline-block;
  position: relative;
  width: 28px;
  height: 27px;
  background-image: url(/assets/old/images/reply-like-report.png);
  background-position: 84px;
  transition: none; }

.comentarii .comentariu .reply-like-report a.like .nr-com {
  position: absolute;
  bottom: -5px;
  right: 0;
  font-size: 12px;
  font-weight: 400;
  color: #e01b2f; }

.comentarii .comentariu .reply-like-report a.respect .nr-com {
  position: absolute;
  bottom: -5px;
  right: 0;
  font-size: 12px;
  font-weight: 400;
  color: #e01b2f; }

.comentarii .comentariu .reply-like-report a.report {
  display: inline-block;
  position: relative;
  width: 28px;
  height: 27px;
  background-image: url(/assets/old/images/reply-like-report.png);
  background-position: 56px;
  transition: none; }

.comentarii .comentariu .reply-like-report a.respect {
  display: inline-block;
  position: relative;
  width: 28px;
  height: 27px;
  background-image: url(/assets/old/images/reply-like-report.png);
  background-position: 28px;
  transition: none; }

a.reply:hover, a.like:hover, a.report:hover, a.respect:hover {
  background-color: #eee; }

.comentariu.oficial a.reply:hover, .comentariu.oficial a.like:hover, .comentariu.oficial a.report:hover, .comentariu.oficial a.respect:hover,
.comentariu.valoros a.reply:hover, .comentariu.valoros a.like:hover, .comentariu.valoros a.report:hover, .comentariu.valoros a.respect:hover {
  background-color: #fff; }

a.reply span, a.like span, a.report span, a.respect span {
  display: none; }

a.reply:hover span, a.like:hover span, a.report:hover span, a.respect:hover span {
  opacity: 1;
  border-bottom: 1px solid #b4b4b4;
  position: absolute;
  display: block;
  top: -30px;
  left: -26px;
  width: 80px;
  font-size: 16px;
  text-align: center;
  background: #fff; }

.comentarii .comentariu .echipa-preferata {
  position: absolute;
  top: 6px;
  right: 70px; }

.comentarii .comentariu.oficial .echipa-preferata,
.comentarii .comentariu.valoros .echipa-preferata {
  top: 26px; }

.comentarii .comentariu .comentariu-citat {
  padding: 25px 30px;
  background-color: #f8f8f8;
  margin: 17px 150px 18px; }

.comentarii .comentariu.oficial .comentariu-citat,
.comentarii .comentariu.valoros .comentariu-citat {
  background-color: rgba(255, 255, 255, 0.75); }

.comentarii .comentariu .comentariu-citat p {
  margin: 0; }

.comentarii .comentariu .comentariu-citat p.nume-detalii {
  color: #888;
  margin-bottom: 10px; }

.comentarii a.toate-comentariile {
  margin: 0 auto 50px;
  padding: 8px 0;
  display: block;
  text-align: center;
  border: 1px solid #ddd;
  font-size: 18px;
  font-weight: 400;
  border-radius: 5px;
  max-width: 572px; }

.comentarii a.toate-comentariile:hover {
  background-color: #f8f8f8;
  border: 1px solid #f8f8f8;
  color: #e01b2f; }

.comentarii a.toate-comentariile:active {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15); }

.paginare {
  margin-bottom: 40px;
  text-align: center; }

.paginare a, .paginare p, .paginare-mobile a, .paginare-mobile p {
  display: inline-block;
  vertical-align: top;
  margin: 5px 3px;
  border: 1px solid #ddd;
  font-size: 18px;
  font-weight: 400;
  border-radius: 5px;
  padding: 10px 18px;
  position: relative;
  overflow: hidden; }

.paginare p {
  border: 1px solid #fff;
  padding: 10px 10px;
  cursor: default; }

.paginare.gri p {
  border: 1px solid #f2f2ef; }

.paginare p.selectat {
  border: 1px solid #f8f8f8;
  background-color: #f8f8f8;
  padding: 10px 18px; }

.paginare.gri p.selectat {
  border: 1px solid #fff;
  background-color: #fff;
  padding: 10px 18px; }

.paginare a:hover, .paginare-mobile a:hover {
  background-color: #f8f8f8;
  border: 1px solid #f8f8f8;
  color: #e01b2f;
  overflow: visible; }

.paginare-mobile {
  display: none; }

.adauga-comentariu {
  border-top: none;
  padding-top: 0;
  padding-bottom: 15px; }

.adauga-comentariu .comentariu p {
  margin-top: -27px; }

.adauga-comentariu .comentariu p a {
  border-bottom: 1px solid #e1e1e1; }

.adauga-comentariu .comentariu p a:hover {
  color: #e01b2f;
  border-bottom: 1px solid #e0411b; }

.adauga-comentariu .comentariu form {
  display: block;
  margin: 20px 150px 0 150px;
  height: 211px;
  position: relative; }

.adauga-comentariu .comentariu form textarea {
  margin: 0;
  width: 100%;
  height: 150px;
  background-color: #f8f8f8;
  padding: 15px 20px;
  -webkit-appearance: none;
  border: none;
  outline: none;
  appearance: none;
  font-size: 18px;
  font-weight: 300;
  font-family: 'Source Sans Pro', sans-serif;
  color: #444;
  resize: none;
  line-height: 1.45; }

.adauga-comentariu .comentariu form textarea:focus {
  background-color: #f5f5f5;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15); }

.adauga-comentariu .comentariu form input[type=submit] {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-appearance: none;
  border: none;
  outline: none;
  appearance: none;
  margin: 0;
  padding: 10px 20px 11px;
  background-color: #fccf5c;
  font-size: 20px;
  font-weight: 300;
  font-family: 'Source Sans Pro', sans-serif;
  color: #444;
  border-radius: 5px;
  color: #000;
  width: 226px; }

.adauga-comentariu .comentariu form input[type=submit]:hover {
  background-color: #e01b2f;
  color: #fff; }

.adauga-comentariu .comentariu form input[type=submit]:active {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15); }

.adauga-comentariu .comentariu form input[type=submit]:focus {
  background-color: #f8f8f8;
  border: 1px dashed #ccc;
  color: #e0411b; }

.adauga-comentariu .comentariu form > span {
  color: #ccc;
  font-size: 18px;
  position: absolute;
  right: 0;
  bottom: 9px; }

.utile-articol .C3 {
  display: inline-block;
  width: 100%; }

.utile-articol .C3 .box {
  margin-top: 20px;
  padding-bottom: 0;
  margin-bottom: 0; }

.utile-articol .box-cu-bulina .cele-mai {
  position: absolute;
  border-top: none;
  margin-top: 0;
  width: auto;
  text-align: right;
  right: 10px;
  top: 8px; }

.utile-articol .best-of-today {
  margin-top: 20px;
  text-align: justify;
  border-top: 1px solid #ddd;
  padding-top: 10px; }

.utile-articol .best-of-today a {
  display: inline-block;
  width: 18%;
  text-align: left;
  padding: 12px 0 0;
  border-bottom: none;
  vertical-align: top; }

.utile-articol .best-of-today a img {
  /*display:none;*/
  margin-bottom: 12px; }

.utile-articol .best-of-today a:hover img {
  box-shadow: 0 3px 0 #E01B2F; }

.prefooter-articol {
  padding-bottom: 40px; }

.leaderboard-galerie {
  position: absolute;
  width: 100%;
  top: 0;
  height: 90px;
  z-index: 9999;
  text-align: center;
  background: #fff; }

.banner-interstitial-galerie {
  margin: 20vh auto 0;
  position: relative;
  z-index: 9999; }

.leaderboard-mobile-galerie {
  display: none; }

.galerie {
  height: 100%;
  position: relative; }

.galerie .g-poza {
  position: absolute;
  top: 150px;
  bottom: 91px;
  right: 300px;
  left: 0;
  background: #262626;
  display: flex;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center; }

.galerie .g-poza p {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  background: linear-gradient(to bottom, rgba(38, 38, 38, 0) 0%, rgba(38, 38, 38, 0.8) 100%);
  padding: 50px 15px 15px;
  text-shadow: 0 1px 0 #000; }

.galerie .g-poza .buton-close {
  display: none; }

.galerie .g-poza .buton-inapoi {
  position: absolute;
  top: 18px;
  left: 15px;
  display: block;
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  line-height: 1;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50px;
  height: 38px;
  text-align: center;
  padding: 10px 20px 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
  z-index: 99999; }

.galerie .g-poza .buton-inapoi:hover {
  color: #FCCF5C;
  background-color: black;
  box-shadow: 0 0 10px 1px #FCCF5C; }

.g-poza .butoane-share {
  position: absolute;
  top: 18px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50px;
  height: 38px;
  text-align: center;
  padding: 7px 15px 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
  z-index: 99999; }

.g-poza .buton-share {
  height: 25px;
  background-size: auto 25px;
  background-position: -2px; }

.g-poza .buton-share:hover {
  box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.5); }

.g-poza .butoane-share .buton-share.facebook {
  width: 122px;
  background-position: 0; }

.g-poza .butoane-share .buton-share.twitter {
  width: 25px; }

.g-poza .butoane-share .buton-share.googleplus {
  width: 25px; }

.g-poza .butoane-share .buton-share.email {
  width: 25px; }

.galerie .g-poze {
  position: absolute;
  background: #fff;
  bottom: 0;
  right: 300px;
  left: 0;
  border-top: 1px solid #ddd;
  height: 90px;
  overflow: hidden; }

.galerie .g-poze .scroll-container {
  position: absolute;
  top: 0;
  left: 70px;
  width: 3000px; }

.galerie .g-poze .scroll-container a {
  display: inline-block;
  padding: 9px 3px 10px; }

.galerie .g-poze img {
  height: 70px; }

.galerie .g-poze img.selectat {
  box-shadow: 0 0 0 5px #FCCF5C; }

.galerie .g-poze .scroll-container a:hover img {
  box-shadow: 0 0 0 3px #E01B2F; }

.galerie .banner-container {
  position: absolute;
  background: #111;
  right: 0;
  top: 150px;
  bottom: 0;
  width: 300px; }

.galerie .banner-container .banner {
  margin: 0 0 18px 0; }

.galerie .banner-container-tablet {
  display: none; }

.galerie .buton-prev, .galerie .buton-next {
  font-size: 60px;
  line-height: 1;
  padding-top: 8px;
  font-family: Georgia;
  display: block;
  position: absolute;
  height: 90px;
  top: 0;
  z-index: 99;
  color: #ccc; }

.galerie .buton-prev:hover, .galerie .buton-next:hover {
  color: #e01b2f; }

.galerie .buton-prev {
  background: linear-gradient(to right, white 0%, white 70%, rgba(255, 255, 255, 0) 100%);
  padding-left: 15px;
  padding-right: 40px;
  left: 0; }

.galerie .buton-prev:hover {
  padding-left: 10px;
  padding-right: 45px; }

.galerie .buton-next {
  background: linear-gradient(to left, white 0%, white 70%, rgba(255, 255, 255, 0) 100%);
  padding-left: 40px;
  padding-right: 15px;
  right: 0; }

.galerie .buton-next:hover {
  padding-left: 45px;
  padding-right: 10px; }

.leaderboard-sub-header {
  margin-top: -30px;
  margin-bottom: 30px; }

.leaderboard-sub-header .inside {
  border-top: 1px solid #ddd;
  padding: 30px 0;
  text-align: center; }

.cautare {
  text-align: justify;
  margin-top: -30px;
  font-size: 18px;
  line-height: 1.6; }

.cautare .inside {
  border-top: 1px solid #ddd; }

.cautare .rezultate {
  width: 66%;
  display: inline-block;
  vertical-align: top;
  text-align: left;
  padding: 0 15px; }

.cautare .inside h1 {
  font-size: 36px;
  font-weight: 300;
  border-bottom: 1px dashed #ddd;
  line-height: 1.1;
  letter-spacing: -.5px;
  color: #888;
  padding-bottom: 15px; }

.cautare .inside h1.autor {
  min-height: 120px;
  padding-top: 5px; }

.cautare .inside h1 img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  vertical-align: middle;
  margin-right: 20px;
  float: left;
  margin-top: -5px; }

.cautare .rezultate .rezultat {
  display: block;
  margin: 40px 0; }

.cautare .rezultate .rezultat:hover {
  background-color: #f2f2ef;
  box-shadow: 0 0 0 15px #f2f2ef; }

.cautare .rezultate .rezultat h5 {
  line-height: 1.1;
  margin: 0;
  color: #959595;
  font-size: 16px;
  font-weight: 300; }

.cautare .rezultate .rezultat h5 strong {
  color: #E01B2F;
  text-transform: uppercase;
  font-size: 14px; }

.cautare .rezultate .rezultat h2 {
  line-height: 1.1;
  margin: 12px 0 10px;
  font-size: 24px;
  font-weight: 700; }

.cautare .rezultate .rezultat:hover h2 {
  color: #E01B2F; }

.cautare .rezultate .rezultat p {
  margin: 0; }

.cautare .filtre {
  width: 30%;
  display: inline-block;
  vertical-align: top;
  text-align: left;
  padding-top: 40px;
  font-size: 18px;
  line-height: 1.6; }

.cautare .filtre .filtru {
  padding: 0 0 60px; }

.cautare .filtre h3 {
  font-weight: 300;
  text-transform: uppercase;
  border-bottom: 1px dashed #ddd;
  margin: 0;
  line-height: 1.1;
  padding-bottom: 15px;
  margin-bottom: 20px;
  color: #888; }

.cautare .filtre h5 {
  margin: 20px 0 10px;
  line-height: 1.1; }

.cautare .filtre p {
  margin: 0; }

.cautare .filtre li a {
  color: #E01B2F;
  font-weight: 400; }

.cautare .filtre li a:hover {
  text-decoration: underline; }

.cautare .filtre input[type=text] {
  margin: 10px 0 20px;
  width: 100%;
  background-color: #f8f8f8;
  padding: 15px 20px;
  -webkit-appearance: none;
  border: none;
  outline: none;
  appearance: none;
  font-size: 18px;
  font-weight: 300;
  font-family: 'Source Sans Pro', sans-serif;
  color: #444;
  resize: none;
  line-height: 1.45; }

.cautare .filtre input[type=text]:focus {
  background-color: #f5f5f5;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15); }

.cautare .filtre input[type=submit] {
  -webkit-appearance: none;
  border: none;
  outline: none;
  appearance: none;
  margin: 10px 0 0;
  padding: 10px 20px 11px;
  background-color: #fccf5c;
  font-size: 18px;
  font-weight: 300;
  font-family: 'Source Sans Pro', sans-serif;
  color: #444;
  border-radius: 5px;
  color: #000;
  width: 150px;
  display: block; }

.cautare .filtre input[type=submit]:hover {
  background-color: #e01b2f;
  color: #fff; }

.cautare .filtre input[type=submit]:active {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15); }

.cautare .filtre input[type=submit]:focus {
  background-color: #f8f8f8;
  border: 1px dashed #ccc;
  color: #e0411b; }

.cautare .filtre select {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
  font-size: 18px;
  margin: 10px 0 20px;
  padding: 10px 20px 11px;
  -webkit-appearance: none;
  color: #333;
  border: none;
  background-color: #f8f8f8; }

.cautare .filtre select.zi {
  width: 22%; }

.cautare .filtre select.luna {
  width: 45%; }

.cautare .filtre select.an {
  width: 26%; }

.programtv {
  margin-top: -30px;
  background-color: #F2F2EF; }

.programtv .inside {
  padding: 15px 100px 50px;
  width: 100%; }

.programtv h1 {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -.5px;
  width: 100%;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 35px; }

.programtv h1 span {
  font-size: 14px;
  border: 1px solid #ddd;
  display: inline-block;
  height: 40px;
  width: 40px;
  vertical-align: top;
  margin-left: 10px;
  border-radius: 5px;
  padding-top: 12px;
  cursor: pointer;
  position: relative;
  background-color: #fff; }

.programtv h1 span:hover {
  border-radius: 5px 5px 0 0;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.1); }

.programtv h1 span ul {
  display: block;
  width: 200px;
  border: 1px solid #ddd;
  border-radius: 5px 0 5px 5px;
  position: absolute;
  top: 38px;
  right: -1px;
  list-style-type: none;
  font-size: 20px;
  background-color: #fff;
  height: 0;
  overflow: hidden;
  opacity: 0;
  z-index: 999;
  letter-spacing: 0; }

.programtv h1 span:hover ul {
  height: auto;
  opacity: 1; }

.programtv h1 span ul li a {
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid #ddd; }

.programtv h1 span ul li a:hover {
  color: #E01B2F;
  background-color: #F8F8F8; }

.programtv .zona-listing {
  position: relative; }

.programtv .prev-zi, .programtv .next-zi {
  position: absolute;
  top: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  width: 50px;
  height: 50px;
  text-align: center;
  display: block;
  border-radius: 5px;
  font-size: 30px;
  padding-top: 2px;
  font-weight: 400; }

.programtv .prev-zi {
  left: -70px; }

.programtv .next-zi {
  right: -70px; }

.programtv .prev-zi:hover, .programtv .next-zi:hover {
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.1); }

.programtv .prev-zi:active, .programtv .next-zi:active {
  color: #E01B2F;
  background-color: #F8F8F8;
  text-shadow: 0 1px 0 #fff; }

.programtv .zile-wrapper {
  overflow: hidden;
  position: relative; }

.programtv .zile-wrapper .gradient {
  width: 50px;
  height: 2000px;
  background: linear-gradient(to right, rgba(242, 242, 239, 0) 0%, #f2f2ef 100%);
  position: absolute;
  top: 0;
  right: 0; }

.programtv .zile {
  text-align: left;
  width: 5000px; }

.programtv .zona-listing .program-zi {
  display: inline-block;
  width: 320px;
  background-color: #fff;
  margin-right: 10px;
  padding: 11px 10px;
  vertical-align: top; }

.program-zi thead td {
  font-size: 16px;
  font-weight: bold;
  color: #E01B2F;
  text-transform: uppercase;
  padding: 7px 10px 12px;
  border-top: none; }

.program-zi tr:hover {
  background-color: #f8f8f8;
  cursor: default; }

.program-zi thead tr:hover {
  background-color: #fff; }

.program-zi td {
  font-size: 16px;
  border-top: 1px solid #ddd;
  padding: 8px 10px;
  line-height: 1.2; }

.pagina-statica {
  margin-top: -30px;
  line-height: 1.6; }

.pagina-statica .inside {
  width: 90%;
  max-width: 930px;
  padding: 1px 0 30px; }

.pagina-statica h1 {
  font-weight: 300;
  line-height: 1.1;
  font-size: 36px; }

.pagina-statica h2 {
  text-transform: uppercase;
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700; }

.pagina-statica p {
  margin-bottom: 20px;
  font-size: 18px; }

.pagina-statica p a {
  color: #E01B2F; }

.pagina-statica p a:hover {
  border-bottom: 1px dotted #E01B2F; }

.pagina-statica ul {
  font-size: 18px;
  margin-bottom: 20px;
  list-style-position: outside;
  padding-left: 20px; }

.pagina-statica ul li {
  margin-bottom: 15px;
  padding-left: 8px; }

.banner-full-screen {
  display: block; }

.banner-full-screen img {
  width: 100%; }

.banner-full-screen .adocean {
  width: 100% !important;
  height: 100% !important; }

.login-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 10000;
  display: flex; }

.deschidere-special {
  margin: auto;
  margin-bottom: 40px;
  width: 100%;
  min-height: 100%;
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
  color: #fff;
  text-align: center;
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex; }

.deschidere-special .masking {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.65) 100%), url(/assets/old/images/pattern.png);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.65))), url(/assets/old/images/pattern.png);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.65) 100%), url(/assets/old/images/pattern.png);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.65) 100%), url(/assets/old/images/pattern.png);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.65) 100%), url(/assets/old/images/pattern.png);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.65) 100%), url(/assets/old/images/pattern.png);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
  background-color: rgba(0, 0, 0, 0.25); }

.deschidere-special .wrapper {
  width: 100%;
  margin: auto;
  z-index: 999;
  padding-top: 50px; }

.deschidere-special .wrapper .leaderboard-hp {
  width: 100%;
  margin: 0 auto;
  padding: 0px 0;
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1); }

.deschidere-special .wrapper h1 {
  font-family: 'Tungsten', sans-serif;
  text-transform: uppercase;
  font-size: 8.5vm;
  font-size: 8.5vmin;
  line-height: 1;
  text-shadow: 0 1px 30px rgba(0, 0, 0, 0.25), 0 1px 3px rgba(0, 0, 0, 0.75);
  width: 70%;
  margin: 0 auto 20px;
  font-weight: bold;
  letter-spacing: normal; }

.deschidere-special .wrapper h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-style: italic;
  line-height: 1.4;
  font-weight: 300;
  font-size: 24px;
  text-shadow: 0 1px 30px rgba(0, 0, 0, 0.25), 0 1px 3px rgba(0, 0, 0, 0.75);
  width: 80%;
  max-width: 930px;
  margin: 0 auto;
  font-weight: normal; }

.header-fix {
  background: rgba(0, 0, 0, 0.85);
  position: fixed;
  width: 100%;
  top: 90px;
  padding: 0;
  height: 61px;
  border-bottom: 1px solid #000;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 16777270; }

.header-fix.pag-galerie {
  background: rgba(0, 0, 0, 0.95); }

.header-fix .logo {
  display: block;
  background-image: url(/assets/old/images/logo-alb.png);
  background-repeat: no-repeat;
  height: 61px;
  width: 300px;
  background-position: 15px 11px;
  background-size: 226px 41px; }

.header-fix .menu-button {
  display: block;
  height: 61px;
  width: 56px;
  background-image: url(/assets/old/images/menu.png);
  vertical-align: top;
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 60px; }

.header-fix .menu-button:hover {
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.1);
  background-color: #333; }

.header-fix .menu-button:hover .menu-mobile-wrapper {
  display: block;
  top: 61px; }

.header-fix .search-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  height: 61px;
  width: 56px;
  background-image: url(/assets/old/images/search.png);
  background-repeat: no-repeat;
  overflow: hidden;
  outline: none;
  -webkit-appearance: none;
  border: 0;
  top: 0;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
  font-size: 24px;
  padding-left: 56px;
  padding-right: 0;
  position: absolute;
  right: 0;
  background-color: transparent;
  color: #fff;
  border-radius: 0; }

.header-fix .search-box:focus {
  width: 290px;
  position: absolute;
  padding-right: 20px;
  background-color: #333; }

.header-fix .search-box input {
  background: none;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
  font-size: 24px;
  position: absolute;
  top: 14px;
  left: 56px; }

.header-nebun {
  background: #ff830b;
  background: -moz-linear-gradient(top, #ff830b 0%, #ff9d0d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff830b), color-stop(100%, #ff9d0d));
  background: -webkit-linear-gradient(top, #ff830b 0%, #ff9d0d 100%);
  background: -o-linear-gradient(top, #ff830b 0%, #ff9d0d 100%);
  background: -ms-linear-gradient(top, #ff830b 0%, #ff9d0d 100%);
  background: linear-gradient(to bottom, #ff830b 0%, #ff9d0d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff830b', endColorstr='#ff9d0d',GradientType=0 ); }

.articol.nebun h1 {
  font-family: 'PT Serif', serif;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  padding: 0 10%;
  width: 100%;
  margin-bottom: 30px;
  font-size: 40px; }

.articol.nebun .poza-articol {
  height: 600px; }

.articol.nebun .poza-articol .poza {
  position: absolute;
  right: 0;
  top: 0; }

.articol.nebun .banner300x600 {
  right: auto;
  top: 0;
  left: 0; }

.articol.nebun .text-articol .banner1 {
  position: absolute;
  top: 0;
  left: auto;
  right: 0; }

.articol.nebun .text-articol .butoane-share .buton-share.twitter {
  width: 152px; }

.articol.nebun .text-articol .butoane-share .buton-share.googleplus {
  width: 152px; }

.articol.nebun .text-articol {
  font-family: 'PT Serif', serif; }

.related.nebun .parteneri .nume-parteneri p.span4 {
  color: #ff830b;
  font-family: 'PT Serif', serif; }

.related.nebun .parteneri .boxuri-parteneri .box-partener a p {
  font-family: 'PT Serif', serif;
  line-height: 1.3; }

.related.nebun .parteneri .boxuri-parteneri .box-partener a:hover img {
  box-shadow: 0 3px 0 #ff830b; }

.related.nebun .parteneri .boxuri-parteneri .box-partener a:hover p {
  color: #ff830b; }

.box-cu-bulina.nebun .bulina {
  background-color: #ff830b;
  border-radius: 0; }

.box-cu-bulina.nebun a {
  font-family: 'PT Serif', serif; }

.box-cu-bulina.nebun a:hover {
  color: #ff830b; }

.box-cu-bulina.nebun a:hover img {
  box-shadow: 0 3px 0 #ff830b; }

.box-cu-bulina.nebun .cele-mai a.selectat {
  color: #ff830b; }

.box-cu-bulina.nebun .header-box-cu-bulina {
  font-family: 'PT Serif', serif; }

.footer.nebun a {
  color: #ff830b; }

.banner-branding {
  text-align: center;
  width: 100%;
  margin-bottom: 12px; }

.listing-nebun .inside {
  width: 90%;
  max-width: 1500px;
  padding-top: 10px;
  text-align: center;
  font-family: 'PT Serif', serif; }

.listing-nebun .stire-nebuna {
  display: inline-block;
  width: 30%;
  vertical-align: top;
  margin: 0 1.5% 40px;
  text-align: left; }

.listing-nebun .stire-nebuna:hover {
  background-color: #f2f2ef;
  box-shadow: 0 0 0 18px #f2f2ef; }

.listing-nebun .stire-nebuna .poza-nebuna {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 65%;
  margin-bottom: 12px;
  background-size: cover;
  background-position: center top; }

.listing-nebun .stire-nebuna p {
  line-height: 1.3;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 8px; }

.listing-nebun .stire-nebuna:hover .poza-nebuna {
  box-shadow: 0 5px 0 #ff830b; }

.listing-nebun .stire-nebuna:hover p {
  color: #ff830b; }

.listing-nebun .stire-nebuna span {
  display: block;
  line-height: 1.5;
  font-weight: normal;
  font-size: 16px; }

.mai-multe-stiri-nebune {
  display: block;
  background-color: #f2f2ef;
  border: 1px solid #ddd;
  font-size: 24px;
  padding: 14px 0 15px;
  margin: 0 auto 60px;
  border-radius: 8px;
  width: 97%; }

.mai-multe-stiri-nebune:hover {
  background-color: #ff830b;
  border: 1px solid #ff830b;
  color: #fff; }

/* GAZETA DIGITALA */
.gd-home {
  font-size: 0;
  text-align: justify;
  margin-bottom: 30px; }

.gd-home h1 {
  font-weight: 300;
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 25px 15px; }

.coperta-mare {
  width: 612px;
  height: 836px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  display: inline-block;
  vertical-align: top;
  padding: 12px;
  text-align: justify; }

.container-coperte-mici {
  width: 612px;
  height: 836px;
  display: inline-block;
  vertical-align: top; }

.container-coperte-mici.cumparate {
  width: 1248px;
  height: auto;
  margin-bottom: 30px; }

.coperta-mica {
  width: 300px;
  height: 412px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  display: inline-block;
  vertical-align: top;
  margin-bottom: 12px;
  padding: 12px; }

.coperta-mica .container-coperta.abonament {
  background-image: url(/assets/old/images/bg-abonament.png);
  padding: 23px 18px 0; }

.container-coperte-mici.cumparate .coperta-mica {
  margin-right: 12px; }

.container-coperta {
  width: 588px;
  height: 759px;
  position: relative;
  display: inline-block;
  overflow: hidden; }

.container-coperta:hover .inner-glow {
  background-color: rgba(255, 255, 255, 0.15); }

.container-coperta .inner-glow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.05); }

.container-coperte-mici .container-coperta {
  width: 276px;
  height: 345px; }

.coperta-mare span.data {
  display: inline-block;
  font-size: 20px;
  margin-top: 12px;
  margin-left: 15px;
  padding: 7px 0 9px; }

.coperta-mare a.buton {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  margin-top: 12px;
  background-color: #fad068;
  border-radius: 5px;
  padding: 7px 20px 9px; }

.coperta-mica span.data {
  display: inline-block;
  font-size: 18px;
  margin-top: 12px;
  margin-left: 7px;
  padding: 3px 0 5px; }

.coperta-mica a.buton {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
  background-color: #fad068;
  border-radius: 5px;
  padding: 3px 15px 5px; }

.coperta-mare a.buton:hover, .coperta-mica a.buton:hover {
  background-color: #e01b2f;
  color: #fff; }

.gd-home-detalii {
  text-align: justify;
  margin-top: -20px; }

.gd-home-detalii .titlurile-zilei, .gd-home .titlurile-zilei {
  display: inline-block;
  width: 612px;
  padding: 0 20px;
  vertical-align: top;
  text-align: left; }

.gd-home-detalii .detalii {
  display: inline-block;
  width: 612px;
  padding: 0 20px;
  vertical-align: top;
  text-align: left; }

.gd-home-detalii h2 {
  font-weight: 300;
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 7px; }

.gd-home-detalii .titlurile-zilei h2 {
  margin-bottom: 16px; }

.gd-home .titlurile-zilei h2 {
  font-weight: 300;
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 16px;
  margin-top: 10px; }

.gd-home-detalii h3 {
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

.gd-home-detalii h3:last-child {
  border-bottom: none; }

.gd-home .titlurile-zilei h3 {
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

.gd-home .titlurile-zilei h3:last-child {
  border-bottom: none; }

.gd-home-detalii p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 12px; }

.gd-home-detalii p a {
  color: #e01b2f; }

.gd-home-detalii p a:hover {
  border-bottom: 1px dotted #e01b2f; }

.gd-aboneaza {
  text-align: center; }

.gd-aboneaza .inside {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  padding: 24px 20px 27px; }

.gd-aboneaza h2 {
  font-weight: 300;
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 18px; }

.gd-aboneaza a {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  padding: 8px 20px 9px;
  background-color: #fad068;
  border-radius: 5px;
  margin: 0 2px 8px;
  text-align: center;
  width: 220px; }

.gd-aboneaza a:hover {
  background-color: #e01b2f;
  color: #fff; }

.item-plata {
  text-align: justify;
  font-size: 18px; }

.item-plata span {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  width: 70%; }

.item-plata a {
  display: inline-block;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  background-color: #fad068;
  border-radius: 5px;
  padding: 3px 0 5px;
  width: 150px; }

.item-plata a:hover {
  background-color: #e01b2f;
  color: #fff; }

.item-plata a.nelink {
  background-color: #fff;
  color: #777; }

.item-plata input {
  padding: 8px;
  min-width: 350px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
  font-size: 18px;
  margin-top: 8px; }

.gd-ziar {
  box-shadow: 0 -29px 0 #fff; }

/* BANNERE */
.only-desktop {
  display: block; }

.only-mobile {
  display: none; }

#art {
  width: 300px;
  position: absolute;
  top: 0;
  right: 0; }

#boxart1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px; }

#boxart2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px; }

#boxart3 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px; }

#topart1 {
  display: block;
  margin-bottom: 30px;
  text-align: center; }

.banner-footer-art {
  display: block;
  margin: 30px 0 10px;
  text-align: center; }

#HP1 {
  width: 300px;
  height: 600px;
  position: absolute;
  top: 0;
  right: 0;
  display: block; }

#HPTop {
  text-align: center;
  background-color: #fff;
  background-color: #f5f5f3;
  padding: 30px 0;
  margin-bottom: 30px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd; }

.banner-footer {
  background-color: #f5f5f3;
  padding: 30px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
  text-align: center; }

.load-more .inside a {
  text-align: center;
  display: block;
  font-size: 24px;
  background-color: #fccf5c;
  font-weight: bold;
  padding: 15px 0;
  border-radius: 5px;
  margin-bottom: 30px;
  border: 1px solid #fccf5c; }

.load-more .inside a:hover {
  background-color: #e01b2f;
  color: #fff;
  border: 1px solid #e01b2f; }

.load-more .inside a:active, .load-more .inside a:focus {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5); }

.articol .banner300x600.fixie {
  position: fixed;
  top: 0;
  right: calc((100% - 1236px) / 2); }

/* Media queries
---------------------------------------- */
/* MQ--MOBILE */
@media only screen and (max-width: 767px) {
  .overflow-hidden {
    max-width: 100%;
    overflow: hidden; }
  .inside {
    width: 90%;
    max-width: 120vh; }
  .deschidere .stiri .principala:hover .positioner .poza {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }
  .sectiune .foto-zilei:hover .poza {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }
  .calup-stiri .C2 .stire:hover .wrapper-poza .poza {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }
  .wrapper-header-mare {
    box-shadow: 0 30px 0 #fff; }
  .wrapper-header-mare.gd-header {
    box-shadow: none; }
  .bg-gri .deschidere {
    background-color: #f2f2ef;
    box-shadow: none; }
  .wrapper-header-mare .header-mare {
    height: 90px;
    padding: 0 0 19px 25px; }
  .wrapper-header-mare .header-mare .logo {
    width: 130px; }
  .wrapper-header-mare .meniu-principal {
    display: none; }
  .deschidere .stiri {
    height: auto; }
  .deschidere .stiri .banner300x600 {
    display: none; }
  .deschidere .stiri .principala {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin-bottom: 12px;
    height: auto; }
  .deschidere .stiri .principala .positioner {
    height: 500px; }
  .deschidere .stiri .principala .positioner .text {
    padding: 80px 20px 22px; }
  .deschidere .stiri .principala:hover .positioner .text {
    padding: 80px 20px 32px; }
  .deschidere .stiri .principala .positioner .text h1 {
    margin: 0;
    font-size: 24px;
    line-height: 1.06;
    color: #fff; }
  .deschidere .stiri.breaking .principala .positioner .text p {
    font-size: 20px; }
  .deschidere .stiri.breaking .principala .positioner .text h1 {
    font-size: 28px; }
  .deschidere .stiri.breaking .C1 {
    display: block; }
  .deschidere .stiri .C1 {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    width: auto; }
  .deschidere .stiri .C1 .secundara {
    height: auto;
    width: auto;
    /*padding-bottom:64.6%;*/
    padding: 0;
    display: block;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    margin: 20px auto 0;
    width: 90%; }
  .deschidere .stiri .C1 .secundara .poza {
    display: none; }
  .deschidere .stiri .C1 .secundara .text {
    position: relative;
    height: auto;
    padding: 13px 15px 15px;
    background: #fff; }
  .deschidere .stiri .C1 .secundara:hover .text {
    padding: 13px 15px 15px; }
  .deschidere .stiri .C1 .secundara .text p {
    color: #e01b2f;
    text-shadow: none;
    font-size: 12px;
    margin-bottom: 3px; }
  .deschidere .stiri .C1 .secundara h1 {
    color: #333;
    text-shadow: none;
    font-size: 20px; }
  .deschidere .stiri .C1 .secundara:hover h1 {
    color: #e01b2f; }
  .sectiune .C1 {
    width: 100%; }
  .C1 .wrapper-poza {
    display: none; }
  .sectiune .C2 {
    width: 100%; }
  .sectiune .C3 {
    display: none; }
  .echipe-liga1 {
    display: none; }
  .sectiune .stire h1 {
    font-size: 20px;
    margin-bottom: 3px; }
  .calup-stiri .C2 .stire .supratitlu {
    font-size: 12px;
    margin: 3px 3px 8px; }
  .calup-stiri .C2 .stire .ora-si-comentarii {
    font-size: 12px; }
  .sectiune .stire .ora-si-comentarii img {
    height: 12px;
    width: 12px; }
  .sectiune .stire.dezbaterea-zilei .ora-si-comentarii img {
    height: auto;
    width: auto; }
  .calup-stiri .C2 .stire h1 {
    font-size: 20px;
    margin: 0 3px 12px; }
  .calup-stiri .C2 .stire .wrapper-poza {
    height: auto; }
  .calup-stiri .C2 .stire .wrapper-poza .poza {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    background: none !important;
    height: auto;
    width: 100%;
    margin-left: 0; }
  .calup-stiri .C2 .stire:hover .wrapper-poza .poza {
    top: auto;
    left: auto;
    bottom: auto;
    right: auto; }
  .calup-stiri .C2 .stire .wrapper-poza .poza img {
    display: block;
    width: 100%; }
  .parteneri {
    display: none; }
  .sectiune .foto-zilei {
    width: 100%;
    height: 0;
    padding-bottom: 65%; }
  .sectiune .foto-zilei .text {
    padding: 50px 20px 5px; }
  .sectiune .foto-zilei:hover .text {
    padding: 50px 20px 10px; }
  .sectiune .foto-zilei .text p {
    font-size: 14px;
    font-weight: 400; }
  .sectiune .foto-zilei .text h2 {
    font-size: 14px;
    margin-top: 5px;
    font-weight: 400; }
  .citate .citat .overlay-share {
    display: none; }
  .blogsport .inside {
    /*width:75%;*/
    width: 300px; }
  .blogsport .inside > a img {
    width: 150px;
    margin-bottom: 10px; }
  .blogsport .posts-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 10px; }
  .blogsport .posts-container {
    /*width:100%;*/
    /*margin-left:0;*/ }
  .blogsport .postare {
    /*width:100%;*/
    /*margin:0;*/ }
  .blogsport h1 {
    font-size: 20px;
    padding: 0;
    margin-bottom: 25px; }
  .blogsport .buton-prev {
    padding: 0 20px; }
  .blogsport .buton-next {
    padding: 0 20px; }
  .blogsport .buton-prev:hover {
    color: #fff;
    padding: 0 20px; }
  .blogsport .buton-next:hover {
    color: #fff;
    padding: 0 20px; }
  .mysport {
    display: none; }
  .wrapper-header-mare .inside {
    width: 100%; }
  .deschidere .inside {
    width: 100%; }
  .zona-livescore {
    display: none; }
  .ticker-livescore {
    display: none; }
  .utile .statistici {
    display: none; }
  .utile.show-mobile .statistici {
    display: block; }
  .utile.show-mobile .statistici .rez-prog .data-ora {
    display: none; }
  .utile.show-mobile .statistici .rez-prog .detalii {
    display: none; }
  .utile.show-mobile .statistici .rez-prog .detalii-mobile .detalii {
    display: table-cell;
    text-align: center;
    padding-top: 0;
    padding-bottom: 10px; }
  .utile.show-mobile .statistici .rez-prog .detalii-mobile {
    border-top: none; }
  .utile.show-mobile .statistici .rez-prog .gazde, .statistici .rez-prog .oaspeti {
    width: 44.6%; }
  .utile.show-mobile .statistici .clasament .meciuri {
    display: none; }
  .utile.show-mobile .statistici .clasament .golaveraj {
    display: none; }
  .utile.show-mobile .statistici .competitie {
    padding-right: 15px; }
  .utile.show-mobile .statistici .competitie a {
    font-size: 14px;
    padding: 16px 5px; }
  .utile.only-mobile .inside {
    width: 100%; }
  .utile.only-mobile .statistici {
    display: block; }
  .statistici .etape a {
    padding: 2px;
    display: inline-block; }
  .utile.only-mobile .statistici .rez-prog .data-ora {
    display: none; }
  .utile.only-mobile .statistici .rez-prog .detalii {
    display: none; }
  .utile.only-mobile .statistici .rez-prog .detalii-mobile .detalii {
    display: table-cell;
    text-align: center;
    padding-top: 0;
    padding-bottom: 10px; }
  .utile.only-mobile .statistici .rez-prog .detalii-mobile {
    border-top: none; }
  .utile.only-mobile .statistici .rez-prog .gazde, .statistici .rez-prog .oaspeti {
    width: 44.6%; }
  .utile.only-mobile .statistici .clasament .meciuri {
    display: none; }
  .utile.only-mobile .statistici .clasament .golaveraj {
    display: none; }
  .utile.only-mobile .statistici .competitie {
    padding-right: 15px; }
  .utile.only-mobile .statistici .competitie a {
    font-size: 14px;
    padding: 16px 5px; }
  .wrapper-header-mare .header-mare .meniu-si-search .menu-button:hover .menu-wrapper {
    display: none; }
  .wrapper-header-mare .header-mare .meniu-si-search .menu-button {
    position: static;
    border-radius: 3px; }
  .menu-mobile-wrapper {
    top: 75px;
    right: -6px;
    border: none;
    border-radius: 0;
    width: 100vw; }
  .wrapper-header-mare .header-mare .meniu-si-search .menu-button:hover .menu-mobile-wrapper {
    display: block; }
  .taburi-mobile {
    display: block;
    list-style-type: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    text-align: center; }
  .footer .taburi-mobile {
    border-bottom: none; }
  .taburi-mobile li {
    width: 23.8%;
    display: inline-block; }
  .footer .taburi-mobile li {
    width: 90%;
    margin-bottom: 8px; }
  .taburi-mobile li a {
    width: 100%;
    display: block;
    border: 1px solid #ddd;
    border-bottom: none;
    padding: 5px 0;
    border-radius: 5px 5px 0 0;
    text-align: center; }
  .footer .taburi-mobile li a {
    background-color: #fff;
    border-radius: 5px;
    border-bottom: 1px solid #ddd; }
  .taburi-mobile li a.selectat {
    box-shadow: 0 1px 0 #fff; }
  .footer .taburi-mobile li a.selectat {
    box-shadow: none; }
  .taburi-mobile li a.liga1live {
    background: #fccf5c;
    border: 1px solid #fccf5c;
    border-bottom: none; }
  .taburi-mobile li a.liga1live span {
    color: #e01b2f;
    font-size: 10px;
    font-weight: bold; }
  .submeniu-articol {
    display: none; }
  .articol .titlu {
    margin-top: -30px; }
  .articol td {
    padding: 25px 0 0; }
  .articol .next-art {
    display: none; }
  .articol .next-art-banner {
    display: none; }
  .articol .titlu p {
    font-size: 12px;
    margin-bottom: 8px; }
  .articol .titlu h1 {
    font-size: 28px; }
  .articol .poza-articol {
    width: 100%;
    position: relative;
    margin: 20px 0 35px; }
  .articol .poza-articol .poza {
    max-height: 700px;
    height: auto !important;
    width: 100%; }
  .articol .poza-articol .poza > img {
    width: 100%; }
  .articol .poza-articol .poza .link-galerie-foto {
    bottom: 15px;
    right: 15px;
    font-weight: 400;
    font-size: 20px; }
  .articol .poza-articol .poza .link-galerie-foto img {
    height: 27px; }
  .articol .poza-articol .poza .prev-photo, .galerie .prev-photo {
    cursor: pointer;
    background-image: url(/assets/old/images/prev-photo.png);
    background-repeat: no-repeat;
    background-position: 20px 49%;
    background-size: 24px 35px; }
  .articol .poza-articol .poza .next-photo, .galerie .next-photo {
    cursor: pointer;
    background-image: url(/assets/old/images/next-photo.png);
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) 49%;
    background-size: 24px 35px; }
  .articol .poza-articol p {
    width: 100%; }
  .articol .banner300x600 {
    display: none; }
  .articol .text-articol {
    padding: 0; }
  .articol .text-articol p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 18px;
    font-weight: 400; }
  .articol.scurt .text-articol p {
    font-size: 21px; }
  .articol .text-articol ul, .articol .text-articol ol {
    margin-bottom: 18px;
    list-style-position: outside;
    margin-left: 30px; }
  .articol .text-articol ul li, .articol .text-articol ol li {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400; }
  .articol.scurt .text-articol ul li, .articol.scurt .text-articol ol li {
    font-size: 21px; }
  .articol .text-articol p.data-autor {
    font-size: 16px;
    color: #959595; }
  .parteneri .boxuri-parteneri .box-partener a img {
    height: auto; }
  .articol .text-articol h2 {
    font-weight: 300;
    font-size: 30px; }
  .articol .text-articol h3 {
    font-weight: 300;
    font-size: 20px;
    margin-top: 35px; }
  .articol .text-articol h6 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    margin: 30px 0 10px;
    padding-bottom: 5px;
    color: #E01B2F; }
  .articol .text-articol table {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 400; }
  .articol .text-articol table thead {
    font-size: 12px;
    line-height: 1.1; }
  .articol .text-articol table td {
    padding: 8px 10px; }
  .articol .text-articol blockquote {
    line-height: 1.5;
    font-size: 17px; }
  .articol .text-articol blockquote .semnatura {
    font-weight: 400; }
  .articol .text-articol .comentariu-embed {
    padding: 22px 20px 5px;
    margin: 25px 0; }
  .articol .text-articol .comentariu-embed .nume-detalii {
    margin: 9px 0 27px; }
  .articol .text-articol .comentariu-embed p {
    font-size: 16px; }
  .articol .text-articol .banner3 {
    display: none; }
  .related .parteneri {
    display: block; }
  .related .parteneri .nume-parteneri p.span4 {
    width: 100%; }
  .related .parteneri .boxuri-parteneri {
    padding: 30px 10%; }
  .related .parteneri .boxuri-parteneri .box-partener {
    width: 100%; }
  .articol .text-articol .banner1 {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd; }
  .articol .text-articol .banner2 {
    position: relative;
    bottom: auto;
    left: auto;
    display: block;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #ddd; }
  .comentarii {
    padding-top: 0;
    width: 100%;
    margin: 0 auto; }
  .comentarii h2 {
    width: 100%;
    padding-left: 0;
    font-size: 28px;
    margin-bottom: 10px; }
  .comentarii h2 a {
    padding: 8px 10px 9px;
    font-size: 16px;
    width: 160px;
    margin-top: 20px;
    margin-bottom: 25px; }
  .comentarii .sortare {
    margin: 0; }
  .comentarii .sortare li {
    margin-right: 5px; }
  .comentarii .sortare li a {
    padding: 12px 15px 11px;
    font-size: 14px; }
  .comentarii .comentariu {
    width: 100%;
    margin-bottom: 20px; }
  .comentarii .comentariu .avatar {
    display: none; }
  .comentarii .comentariu p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #888; }
  .comentarii .comentariu p.nume-detalii {
    font-size: 14px; }
  .comentarii .comentariu .reply-like-report {
    position: static;
    text-align: center;
    margin-bottom: 8px;
    background-color: #f8f8f8;
    padding: 5px 0; }
  .comentarii .comentariu.oficial .reply-like-report,
  .comentarii .comentariu.valoros .reply-like-report {
    background-color: rgba(255, 255, 255, 0.75); }
  .comentarii .comentariu .echipa-preferata {
    display: none; }
  .comentarii .comentariu .comentariu-citat {
    width: 100%;
    padding: 15px 20px;
    margin-left: 0; }
  .comentarii .comentariu .comentariu-citat p {
    font-size: 14px; }
  .comentarii a.toate-comentariile {
    max-width: none;
    width: 100%; }
  .adauga-comentariu .comentariu form {
    margin: 0;
    height: 206px; }
  .adauga-comentariu .comentariu form textarea {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 15px;
    background-color: #eee; }
  .adauga-comentariu .comentariu form input[type=submit] {
    padding: 8px 10px 9px;
    font-size: 16px;
    width: 160px; }
  .adauga-comentariu .comentariu form > span {
    font-size: 16px;
    bottom: 4px;
    width: 150px;
    line-height: 1;
    text-align: right;
    right: 5px; }
  .paginare {
    display: none; }
  .paginare-mobile {
    display: block;
    width: 100%;
    margin: 30px 0 10px;
    text-align: justify; }
  .paginare-mobile a {
    height: 46px;
    margin: 0;
    width: 15%;
    text-align: center;
    padding-left: 0;
    padding-right: 0; }
  .paginare-mobile p {
    width: 66%;
    height: 46px;
    padding-top: 8px;
    margin: 0; }
  .paginare-mobile p select {
    width: 100%; }
  .header-fix.pag-galerie {
    display: none; }
  .leaderboard-galerie.only-mobile {
    display: none; }
  .leaderboard-mobile-galerie {
    display: block;
    position: absolute;
    top: 65px;
    width: 100%;
    z-index: 9999; }
  .galerie .g-poza {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0; }
  .galerie .banner-container {
    display: none; }
  .galerie .g-poza .buton-close {
    display: block;
    position: absolute;
    top: 12px;
    right: 12px;
    display: block;
    font-size: 30px;
    color: #fff;
    font-weight: 300;
    line-height: 1;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    text-align: center;
    padding-top: 4px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
    z-index: 99999; }
  .galerie .g-poza .buton-close:hover {
    color: #FCCF5C;
    background-color: black;
    box-shadow: 0 0 10px 1px #FCCF5C; }
  .galerie .g-poza .buton-inapoi {
    display: none; }
  .galerie .g-poze {
    display: none; }
  .g-poza .butoane-share {
    top: 12px;
    left: 12px;
    right: auto;
    height: 40px;
    padding: 8px 15px 0; }
  .leaderboard-sub-header {
    display: none; }
  .cautare .inside {
    border: none; }
  .cautare .rezultate {
    width: 100%;
    padding: 0; }
  .cautare .rezultate .rezultat p {
    font-weight: 400;
    line-height: 1.5; }
  .cautare .filtre {
    display: none; }
  .programtv .inside {
    max-width: none;
    width: 90vw;
    padding: 15px 0 50px; }
  .programtv h1 {
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 0; }
  .programtv h1 span {
    height: 28px;
    width: 28px;
    padding-top: 8px;
    font-size: 10px; }
  .programtv h1 span ul {
    font-size: 14px;
    font-weight: 400;
    top: 26px;
    width: 150px; }
  .programtv .prev-zi, .programtv .next-zi {
    display: none; }
  .programtv .zile-wrapper .gradient {
    display: none; }
  .programtv .zile {
    width: 90vw; }
  .programtv .zona-listing .program-zi {
    width: 90vw;
    margin-bottom: 15px; }
  .program-zi thead td {
    width: 90vw; }
  .program-zi td {
    font-weight: 400; }
  .pagina-statica {
    line-height: 1.5; }
  .pagina-statica h1 {
    font-size: 24px; }
  .pagina-statica p, .pagina-statica ul {
    font-weight: 400; }
  .sondaj .intrebare {
    font-size: 16px;
    margin-bottom: 10px; }
  .sondaj .optiune {
    font-size: 16px;
    font-weight: 400;
    padding: 5px 10px 5px 30px; }
  .sondaj.rezultate .optiune {
    font-size: 16px;
    padding: 5px 10px 5px 30px; }
  .sondaj.rezultate .optiune .procent-voturi {
    position: relative;
    display: block;
    margin: 0;
    right: auto;
    top: auto;
    font-size: 14px; }
  .sondaj .total {
    text-align: left;
    padding-right: 10px;
    padding-left: 30px;
    padding-bottom: 10px;
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 14px !important; }
  .C2 .sondaj {
    padding: 14px 12px 12px; }
  .deschidere .stiri .C1 .secundara.livescore {
    height: 294px;
    padding-bottom: 294px; }
  .deschidere-special {
    background-attachment: scroll; }
  .deschidere-special .wrapper h1 {
    font-size: 10vm;
    font-size: 10vmin; }
  .header-fix {
    position: relative; }
  .header-fix .logo {
    width: 125px; }
  .header-fix .search-box:focus {
    width: 320px; }
  .header-fix .menu-button:hover .menu-mobile-wrapper {
    width: 100vw;
    right: -60px; }
  .header-nebun .inside a {
    display: block;
    padding: 5px 0; }
  .articol.nebun h1 {
    padding: 0 5%;
    font-size: 24px; }
  .articol.nebun .poza-articol {
    height: auto; }
  .articol.nebun .poza-articol .poza {
    position: relative;
    right: auto;
    top: auto; }
  .articol.nebun .text-articol .banner1 {
    display: none; }
  .listing-nebun .stire-nebuna {
    width: 100%;
    margin: 0 0 40px; }
  .mai-multe-stiri-nebune {
    width: 100%; }
  .wrapper-header-mare .header-mare .logo.gd {
    width: 220px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0 4px; }
  .coperta-mare {
    margin-bottom: 12px;
    width: 100%;
    height: auto; }
  .container-coperta {
    width: 100%;
    height: auto; }
  .coperta-mare span.data {
    display: none; }
  .container-coperta img {
    width: 100%; }
  .container-coperte-mici {
    display: none; }
  .gd-home-detalii .titlurile-zilei {
    width: 100%;
    padding: 0 10px; }
  .gd-home-detalii .detalii {
    width: 100%;
    padding: 0 10px; }
  .gd-home .titlurile-zilei {
    width: 100%;
    padding: 0 10px; }
  .gd-home h1 {
    width: 100%;
    text-align: center;
    margin-left: 0; }
  .container-coperte-mici.cumparate {
    width: 100%;
    display: block;
    text-align: center; }
  .container-coperte-mici.cumparate .coperta-mica {
    margin-left: 6px;
    margin-right: 6px;
    text-align: justify; }
  .item-plata input {
    min-width: 200px; }
  .load-more .inside a {
    font-size: 18px; }
  /* BANNERE MOBIL */
  .only-desktop {
    display: none !important; }
  .only-mobile {
    display: block; }
  #mboxart1 {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd; }
  #mboxart2 {
    display: block;
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    text-align: center;
    margin-top: 40px; }
  #mtopart2 {
    display: none; }
  #mtopart1 {
    display: none; }
  #mtopart3 {
    display: block;
    margin-bottom: 30px; }
  #mHPTop0 {
    display: block;
    margin: 20px 0 0;
    text-align: center; }
  #mHPTop1 {
    display: none; }
  #mHPbox1 {
    display: block;
    width: 100%;
    margin: 30px 0;
    text-align: center; }
  #mHPbox2 {
    display: block;
    width: 100%;
    margin: 0 0 60px;
    text-align: center; }
  #mHPbox3 {
    display: block;
    width: 100%;
    margin: -5px 0 -10px;
    text-align: center; }
  #mHPbox4 {
    display: block;
    width: 100%;
    margin: 30px 0;
    text-align: center; }
  .no-mobile, .sectiune .box.no-mobile {
    display: none; } }

/* MQ--TABLET */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .inside {
    width: 96%; }
  .deschidere .stiri .C1 .secundara:hover .poza {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }
  .deschidere .stiri .principala:hover .positioner .poza {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }
  .sectiune .foto-zilei:hover .poza {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }
  .sectiune .foto-zilei .poza img {
    width: 100%; }
  .wrapper-header-mare .meniu-principal {
    display: none; }
  .deschidere .stiri .principala {
    right: 0; }
  .deschidere .stiri .banner300x600 {
    display: none; }
  .sectiune .C1 {
    width: 34.3%; }
  .sectiune .C2 {
    width: 64.3%; }
  .sectiune .C3 {
    display: none; }
  .sectiune .stire .wrapper-poza {
    width: 100%;
    height: auto; }
  .sectiune .stire .wrapper-poza .poza {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto; }
  .sectiune .stire:hover .wrapper-poza .poza {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }
  .sectiune .stire .wrapper-poza .poza img {
    width: 100%; }
  .calup-stiri .C2 .stire .wrapper-poza {
    height: auto; }
  .calup-stiri .C2 .stire .wrapper-poza .poza {
    position: relative;
    left: auto;
    margin-left: 0; }
  .calup-stiri .C2 .stire:hover .wrapper-poza .poza {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }
  .echipe-liga1 {
    display: none; }
  .parteneri {
    display: none; }
  .sectiune .foto-zilei {
    width: 100%;
    height: 0;
    padding-bottom: 65%; }
  .citate .citat .overlay-share {
    display: none; }
  .blogsport .inside {
    width: 80%; }
  .blogsport .posts-wrapper {
    width: 100%; }
  .blogsport .posts-container {
    width: calc(100% + 12px);
    margin-left: -6px; }
  .blogsport .postare {
    width: calc((100% - 24px)/2); }
  .blogsport h1 {
    font-size: 22px;
    padding: 0 5%;
    margin-bottom: 25px; }
  .mysport .inside {
    width: 80%; }
  .mysport .posts-wrapper {
    width: 100%; }
  .mysport .posts-container {
    width: calc(100% + 12px);
    margin-left: -6px; }
  .mysport .postare {
    width: calc((100% - 24px)/2); }
  .mysport h1 {
    font-size: 22px;
    padding: 0 5%;
    margin-bottom: 25px; }
  .utile .C3 {
    display: inline-block;
    width: 100%; }
  .utile .C3 .box {
    margin-top: 20px;
    padding-bottom: 0;
    margin-bottom: 0; }
  .box-cu-bulina .cele-mai {
    position: absolute;
    border-top: none;
    margin-top: 0;
    width: auto;
    text-align: right;
    right: 10px;
    top: 8px; }
  .best-of-today {
    margin-top: 20px;
    text-align: justify;
    border-top: 1px solid #ddd;
    padding-top: 10px; }
  .best-of-today a {
    display: inline-block;
    width: 18%;
    text-align: left;
    padding: 12px 0 0;
    border-bottom: none;
    vertical-align: top; }
  .best-of-today a img {
    display: none; }
  .wrapper-header-mare .header-mare .meniu-si-search .menu-button:hover .menu-wrapper {
    display: none; }
  .wrapper-header-mare .header-mare .meniu-si-search .menu-button:hover .menu-mobile-wrapper {
    display: block; }
  .submeniu-articol {
    display: none; }
  .articol .titlu {
    border-top: 1px solid #ddd;
    margin-top: -30px; }
  .articol td {
    padding: 25px 15px 0; }
  .articol .next-art {
    display: none; }
  .articol .next-art-banner {
    padding: 30px 10px 30px 0;
    width: 310px; }
  .articol .poza-articol {
    width: 100%;
    position: relative;
    margin: 20px 0 35px; }
  .articol .poza-articol .poza {
    max-height: 700px;
    height: auto;
    width: 100%; }
  .articol .poza-articol .poza > img {
    width: 100%; }
  .articol .poza-articol .poza .prev-photo, .galerie .prev-photo {
    cursor: pointer;
    background-image: url(/assets/old/images/prev-photo.png);
    background-repeat: no-repeat;
    background-position: 20px 49%;
    background-size: 24px 35px; }
  .articol .poza-articol .poza .next-photo, .galerie .next-photo {
    cursor: pointer;
    background-image: url(/assets/old/images/next-photo.png);
    background-repeat: no-repeat;
    background-position: 96% 49%;
    background-size: 24px 35px; }
  .articol .poza-articol p {
    width: 100%; }
  .articol .banner300x600 {
    display: none; }
  .articol .text-articol {
    padding: 0 15px 0 332px; }
  .articol .text-articol p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px; }
  .articol .text-articol p.data-autor {
    font-size: 16px;
    color: #959595; }
  .articol .text-articol .banner3 {
    display: none; }
  .parteneri .boxuri-parteneri .box-partener a img {
    height: auto; }
  .related .parteneri {
    display: block; }
  .related .parteneri .nume-parteneri p.span4 {
    width: 100%; }
  .related .parteneri .boxuri-parteneri {
    padding: 30px 10%; }
  .related .parteneri .boxuri-parteneri .box-partener {
    width: 48%; }
  .comentarii .comentariu {
    max-width: none; }
  .comentarii h2 {
    width: 100%; }
  .comentarii a.toate-comentariile {
    max-width: none;
    width: 71%; }
  .deschidere-special {
    background-attachment: scroll; }
  .articol.nebun h1 {
    padding: 0 5%;
    font-size: 30px; }
  .articol.nebun .poza-articol {
    height: auto; }
  .articol.nebun .poza-articol .poza {
    position: relative;
    right: auto;
    top: auto; }
  .articol.nebun .text-articol .banner1 {
    right: auto;
    left: 0; }
  .listing-nebun .stire-nebuna {
    width: 45%;
    margin: 0 2% 40px; }
  .mai-multe-stiri-nebune {
    width: 95.2%; }
  .gd-home .inside {
    text-align: center; }
  .coperta-mare {
    margin-bottom: 12px; }
  .container-coperte-mici {
    width: 624px; }
  .coperta-mica {
    text-align: justify;
    margin-left: 6px;
    margin-right: 6px; }
  .gd-home-detalii .inside {
    text-align: center; }
  .gd-home h1 {
    width: 100%;
    text-align: center;
    margin-left: 0; }
  .container-coperte-mici.cumparate {
    width: 100%; }
  .container-coperte-mici.cumparate .coperta-mica {
    margin-left: 6px;
    margin-right: 6px; }
  /* BANNERE TABLETA */
  .only-desktop {
    display: none !important; }
  .only-mobile {
    display: block; }
  #mboxart1 {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 300px; }
  #mboxart2 {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px; }
  #mtopart2 {
    display: block;
    text-align: center;
    padding: 20px 0; }
  #martfooter {
    display: block;
    margin: 30px 0 10px;
    text-align: center; }
  #mtopart1 {
    display: none; }
  #mtopart3 {
    display: none; }
  #mHPTop1 {
    display: block;
    margin-bottom: 30px;
    text-align: center; }
  #mHPTop0 {
    display: none; }
  #mHPbox1 {
    display: block;
    width: 100%;
    margin-bottom: 12px; }
  #mHPbox2 {
    display: none; }
  #mHPbox3 {
    display: block;
    width: 100%;
    margin-bottom: 12px; }
  #mHPbox4 {
    display: block;
    width: 100%;
    margin-bottom: 12px; } }

/* MQ--NAROW-TABLET */
@media only screen and (min-width: 768px) and (max-width: 940px) {
  .sectiune .C1 {
    width: 34.3%; }
  .sectiune .C2 {
    width: 64%; }
  .statistici .clasament .meciuri {
    display: none; }
  .statistici .clasament .golaveraj {
    display: none; }
  .articol .text-articol .banner1 {
    display: none; }
  .articol .text-articol .banner2 {
    display: none; }
  .articol .text-articol .banner728-tableta {
    display: block;
    text-align: center;
    padding-bottom: 30px;
    margin-left: -10px;
    min-width: 728px; }
  .articol .text-articol {
    padding: 0 15px; }
  .galerie .g-titlu {
    display: none; }
  .galerie .g-poza {
    left: 0;
    right: 0;
    top: 150px; }
  .galerie .g-poze {
    left: 0;
    right: 0; }
  .galerie .banner-container {
    display: none; }
  .galerie .banner-container-tablet {
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #000;
    text-align: center;
    min-height: 90px; }
  .cautare .rezultate {
    width: 100%; }
  .cautare .filtre {
    display: none; }
  .statistici .rez-prog .data-ora {
    display: none; }
  .statistici .rez-prog .detalii {
    display: none; }
  .statistici .rez-prog .gazde, .statistici .rez-prog .oaspeti {
    width: 44.6%; }
  /* BANNERE TABLETA NARROW */
  #mboxart1 {
    display: none; }
  #mboxart2 {
    display: none; }
  #mtopart1 {
    display: block;
    text-align: center;
    padding-bottom: 30px;
    margin-left: -10px;
    min-width: 728px; } }

/* MQ--NARROW-DESKTOP */
@media only screen and (min-width: 1025px) and (max-width: 1279px) {
  .header-mic {
    display: block; }
  .inside {
    width: 96%; }
  .wrapper-header-mare .header-mare .meniu-principal {
    margin-left: 315px; }
  .wrapper-header-mare .header-mare .meniu-principal li > a {
    padding: 13px 8px 32px;
    font-size: 20px; }
  .wrapper-header-mare .header-mare .meniu-principal li .submeniu-wrapper .submeniu a {
    font-size: 18px; }
  .echipe-liga1 {
    height: auto; }
  .echipe-liga1 a {
    width: 5%;
    height: auto; }
  .parteneri .nume-parteneri p {
    margin-right: 2%; }
  .parteneri .nume-parteneri p:nth-last-child(2) {
    margin-right: 0; }
  .parteneri .nume-parteneri p.span1 {
    width: 23.5%; }
  .parteneri .nume-parteneri p.span2 {
    width: 47%; }
  .parteneri .nume-parteneri p.span3 {
    width: 74.5%; }
  .parteneri .nume-parteneri p.span4 {
    width: 100%; }
  .parteneri .boxuri-parteneri .box-partener {
    width: 23.5%; }
  .sectiune .foto-zilei {
    width: calc(100% - 312px); }
  .blogsport .posts-wrapper {
    width: 100%; }
  .blogsport .posts-container {
    width: calc(100% + 12px);
    margin-left: -6px; }
  .blogsport .postare {
    width: calc((100% - 48px)/4); }
  .mysport .posts-wrapper {
    width: 100%; }
  .mysport .posts-container {
    width: calc(100% + 12px);
    margin-left: -6px; }
  .mysport .postare {
    width: calc((100% - 48px)/4); }
  .statistici .clasament .meciuri {
    display: none; }
  .statistici .clasament .golaveraj {
    display: none; }
  .wrapper-header-mare .header-mare .meniu-si-search .menu-button .menu-wrapper a {
    font-size: 16px; }
  .submeniu-articol li a {
    font-size: 16px; }
  .articol .poza-articol .poza {
    width: calc(100% - 312px);
    background-size: auto 100%;
    position: relative; }
  .articol .poza-articol .poza > img {
    max-width: none;
    left: 50%;
    margin-left: -462px;
    position: absolute; }
  .articol .poza-articol p {
    width: calc(100% - 312px); }
  .articol .poza-articol .poza .prev-photo:hover {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%); }
  .articol .poza-articol .poza .next-photo:hover {
    background: linear-gradient(to left, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 40%); }
  .articol .text-articol .banner-articol-special {
    position: absolute;
    top: 0;
    right: 0;
    display: block; }
  .header-fix .search-box:hover {
    width: 290px;
    position: absolute;
    padding-right: 20px;
    background-color: #333; }
  .statistici .rez-prog .data-ora {
    display: none; }
  .statistici .rez-prog .detalii {
    display: none; }
  .statistici .rez-prog .gazde, .statistici .rez-prog .oaspeti {
    width: 44.6%; }
  .wrapper-header-mare .header-mare .meniu-principal.gd {
    margin-left: 47vw; }
  .wrapper-header-mare .header-mare .meniu-si-search.gd .menu-button {
    display: none; }
  .gd-home .inside {
    text-align: center; }
  .coperta-mare {
    margin-bottom: 12px; }
  .container-coperte-mici {
    width: 624px; }
  .coperta-mica {
    text-align: justify;
    margin-left: 6px;
    margin-right: 6px; }
  .gd-home-detalii .inside {
    text-align: center; }
  .gd-home h1 {
    width: 100%;
    text-align: center;
    margin-left: 0; }
  .container-coperte-mici.cumparate {
    width: 100%; }
  .container-coperte-mici.cumparate .coperta-mica {
    margin-left: 6px;
    margin-right: 6px; }
  .articol .banner300x600.fixie {
    position: fixed;
    top: 0;
    right: 22px; } }

/* MQ--DESKTOP */
@media only screen and (min-width: 1280px) {
  .header-mic {
    display: block; }
  .articol .poza-articol .poza .prev-photo:hover {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%); }
  .articol .poza-articol .poza .next-photo:hover {
    background: linear-gradient(to left, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 40%); }
  .articol .text-articol .banner-articol-special {
    position: absolute;
    top: 0;
    right: 0;
    display: block; }
  .header-fix .search-box:hover {
    width: 290px;
    position: absolute;
    padding-right: 20px;
    background-color: #333; }
  .header-nebun {
    position: fixed;
    z-index: -1;
    width: 100%;
    top: 0; }
  .articol.nebun {
    margin-top: 152px;
    padding-top: 1px; }
  .wrapper-nebun {
    background-color: #fff;
    box-shadow: 0 -1px 15px rgba(0, 0, 0, 0.1);
    padding-bottom: 1px; }
  .listing-nebun {
    margin-top: 152px;
    padding-top: 35px; }
  .wrapper-header-mare .header-mare .meniu-si-search.gd .menu-button {
    display: none; }
  .only-mobile {
    display: none !important; } }

.box .header_anunturi {
  padding: 10px 11px 8px;
  background-color: #f68518;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f68518), to(#f25418));
  background: -webkit-linear-gradient(top, #f68518, #f25418);
  background: -moz-linear-gradient(top, #f68518, #f25418);
  background: -ms-linear-gradient(top, #f68518, #f25418);
  background: -o-linear-gradient(top, #f68518, #f25418); }

.box .header_anunturi a {
  font-weight: bold;
  font-size: 20px;
  color: #FFF;
  text-shadow: 0 2px 0 #9b6449;
  padding: 0 !important; }

.box .header_anunturi a:hover {
  color: #FFF !important; }

.box .add_btn_anunturi {
  padding: 5px 9px 5px;
  background-color: #f68518;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f68518), to(#f25418));
  background: -webkit-linear-gradient(top, #f68518, #f25418);
  background: -moz-linear-gradient(top, #f68518, #f25418);
  background: -ms-linear-gradient(top, #f68518, #f25418);
  background: -o-linear-gradient(top, #f68518, #f25418);
  width: 117px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  margin-top: 10px;
  display: block; }

.box .add_btn_anunturi span {
  font-size: 17px;
  color: #FFF;
  text-shadow: 0 2px 0 #9b6449; }

.box .item-anunturi {
  border-bottom: 1px solid #ddd; }

.box .item-anunturi:last-child {
  border-bottom: none; }

.box .content_anunturi {
  padding: 8px 0 10px 0; }

.box .content_anunturi a {
  padding: 0 !important;
  text-align: left !important; }

.box .content_anunturi a:hover {
  color: #f25218 !important; }

.box .item-anunturi .content_anunturi .title_anunt {
  font-size: 14px;
  color: #f25218;
  margin-bottom: 3px;
  font-weight: bold; }

.box .item-anunturi .content_anunturi .text_anunt {
  font-size: 13px;
  color: #2f2f2f;
  line-height: 16px;
  font-weight: normal !important; }

.box .item-anunturi .content_anunturi .pret_anunt {
  font-weight: bold;
  font-size: 11px;
  color: #2f2f2f;
  margin-top: 2px; }

a.add_btn_anunturi_footer {
  padding: 5px 9px 7px !important;
  font-weight: 300 !important; }

.convergent.centered_cnt {
  width: 1010px !important;
  min-height: 720px;
  margin: 0 auto; }

.convergent.centered_cnt .convergent_hp {
  float: left;
  width: 554px;
  height: 535px;
  background: url("/assets/images/convergent/hp.png") center 0 no-repeat; }

.convergent.centered_cnt .convergent_logo {
  float: left;
  margin-left: 116px;
  width: 209px;
  height: 120px;
  background: url("/assets/images/convergent/logo cpc.png") center 0 no-repeat; }

.convergent.centered_cnt .convergent_text {
  color: #8c8c8c;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.403;
  float: right;
  width: 435px; }

.convergent.centered_cnt .convergent_text .convergent_title {
  padding-top: 30px;
  padding-bottom: 10px;
  float: left;
  color: #8c8c8c;
  font-size: 41.95px;
  font-weight: 400;
  line-height: 1.331;
  width: 800px; }

.convergent_text .red_bold {
  color: #c32f3a;
  font-weight: bold; }

.convergent.centered_cnt .box_default {
  width: 1010px;
  height: 183px;
  display: inline-block;
  margin-top: 50px; }

.convergent.centered_cnt .multiple_box {
  background: linear-gradient(0deg, #efefef 0%, #ffffff 100%);
  width: 163px;
  height: 183px;
  display: inline-block; }

.convergent.centered_cnt .multiple_box .first_pic {
  width: 128px;
  height: 153px;
  background: url("/assets/images/convergent/1.png");
  margin-left: 17px;
  margin-top: 15px;
  display: block; }

.convergent.centered_cnt .multiple_box .first_pic:hover {
  background: url("/assets/images/convergent/1a.png"); }

.convergent.centered_cnt .multiple_box .sec_pic {
  width: 122px;
  height: 134px;
  background: url("/assets/images/convergent/2.png");
  margin-left: 20px;
  margin-top: 33px;
  display: block; }

.convergent.centered_cnt .multiple_box .sec_pic:hover {
  background: url("/assets/images/convergent/2a.png"); }

.convergent.centered_cnt .multiple_box .thi_pic {
  width: 80px;
  height: 138px;
  background: url("/assets/images/convergent/3.png");
  margin-left: 41px;
  margin-top: 26px;
  display: block; }

.convergent.centered_cnt .multiple_box .thi_pic:hover {
  background: url("/assets/images/convergent/3a.png"); }

.convergent.centered_cnt .multiple_box .fou_pic {
  width: 116px;
  height: 134px;
  background: url("/assets/images/convergent/4.png");
  margin-left: 23px;
  margin-top: 33px;
  display: block; }

.convergent.centered_cnt .multiple_box .fou_pic:hover {
  background: url("/assets/images/convergent/4a.png"); }

.convergent.centered_cnt .multiple_box .fifth_pic {
  width: 112px;
  height: 148px;
  background: url("/assets/images/convergent/5.png");
  margin-left: 25px;
  margin-top: 19px;
  display: block; }

.convergent.centered_cnt .multiple_box .fifth_pic:hover {
  background: url("/assets/images/convergent/5a.png"); }

.convergent.centered_cnt .multiple_box .six_pic {
  width: 123px;
  height: 144px;
  background: url("/assets/images/convergent/6.png");
  margin-left: 20px;
  margin-top: 20px;
  display: block; }

.convergent.centered_cnt .multiple_box .six_pic:hover {
  background: url("/assets/images/convergent/6a.png"); }

.convergent .clear {
  clear: both;
  height: 0px;
  overflow: hidden; }

.convergent .hr {
  background-color: #c9cacc;
  width: 1010px;
  height: 1px; }

.convergent .desp_up {
  clear: both;
  height: 50px;
  overflow: hidden; }

.convergent_title .red {
  color: #c32f3a; }

.convergent_text .red, .convergent_red {
  color: #c32f3a; }

.convergent_text .red_bold {
  color: #c32f3a;
  font-weight: bold; }

.convergent_title {
  float: left;
  color: #8c8c8c;
  font-size: 41.95px;
  font-weight: 400;
  line-height: 1.331;
  width: 800px; }

.convergent.centered_cnt.other .convergent_logo {
  float: right;
  width: 209px;
  height: 120px;
  margin-left: 0; }

/*


.convergent_hp
{
    float:left;
    width: 554px;
    height:535px;
    background: url("/assets/images/convergent/hp.png") center 0 no-repeat;

}*/
.hp_text {
  float: right;
  width: 435px; }

.convergent_text {
  color: #8c8c8c;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.403; }

.convergent_text_bold {
  color: #8c8c8c;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.403; }

.hr {
  background-color: #c9cacc;
  width: 1010px;
  height: 1px; }

.cpc_footer {
  text-align: center;
  margin-top: -20px;
  color: #595959;
  font-weight: 700;
  line-height: 1.178;
  min-width: 1053px;
  height: 70px;
  background: url(/assets/images/convergent/pattern09_02.png) center -143px no-repeat; }

.cpc_table {
  border-collapse: collapse; }

.cpc_table th {
  color: #c32f3a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.999;
  width: 33px;
  height: 13px;
  text-align: center;
  border: 1px solid black; }

.cpc_table td {
  color: #8c8c8c;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.999;
  width: 95px;
  height: 45px;
  border: 1px solid black;
  text-align: center; }

.balanta_financiara {
  width: 1010px;
  height: 495px;
  background: url(/assets/images/convergent/tabel_grafic.png) center -110px no-repeat; }

.cpc_footer a {
  color: #c32f3a; }

.editie_preview {
  background-color: #000000;
  height: 40px;
  color: white;
  width: 100%; }

.editie_preview span {
  font-size: 20px;
  font-weight: bold; }

.pull-right {
  float: right !important; }

div.poza, .lazyload {
  background-color: #f5f5f3; }

.cookieInfo {
  display: block;
  background-color: #BEBEBE;
  color: #fff;
  /*  display: none;*/
  font-size: 10px;
  height: 20px;
  line-height: 19px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 815px;
  -moz-border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px;
  -khtml-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px; }
  @media only screen and (max-width: 767px) {
    .cookieInfo {
      width: 85%;
      padding: 43px 43px 6px 43px;
      height: auto;
      margin-top: -40px;
      line-height: 13px; } }
  .cookieInfo a {
    color: #fff; }
  .cookieInfo .box {
    color: #fff;
    cursor: pointer;
    font-size: 8px;
    line-height: 10px;
    margin: 4px 10px 0 0;
    font-weight: bold;
    border: 1px solid #fff;
    float: right;
    padding: 0 2px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
    border-radius: 4px; }
    @media only screen and (max-width: 767px) {
      .cookieInfo .box {
        position: absolute;
        right: 9%;
        top: 0%;
        font-size: 18px;
        padding: 5px 6px; } }
  .cookieInfo.footer {
    border-radius: 0;
    width: 100%;
    font-size: 15px;
    height: auto;
    padding: 0; }
  .cookieInfo.mobile {
    padding: 7px;
    margin-bottom: 20px;
    font-size: 10px; }

.related_on_top {
  position: relative;
  z-index: 3; }

a.video_link {
  background-image: url(/assets/images/video-link-icon.png);
  background-repeat: no-repeat;
  padding-left: 30px; }

.center {
  text-align: center !important; }

@media only screen and (max-width: 767px) {
  .only_desktop {
    display: none !important; }
  .only_tablet {
    display: none !important; }
  .only_mobile {
    display: block !important; } }

/* MQ--TABLET */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .only_desktop {
    display: none !important; }
  .only_tablet {
    display: block !important; }
  .only_mobile {
    display: none !important; } }

/* MQ--DESKTOP */
@media only screen and (min-width: 1025px) {
  .only_desktop {
    display: block !important; }
  .only_tablet {
    display: none !important; }
  .only_mobile {
    display: none !important; }
  .not_desktop {
    display: none !important; } }

/** blogsport **/
.blogsport .postare {
  width: 300px !important; }

.blogsport .buton-prev, .blogsport .buton-next {
  height: 50px; }

@media only screen and (max-width: 767px) {
  .blogsport .postare {
    float: left; } }

/* MQ--TABLET */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .blogsport .posts-container {
    width: 768px; }
  .blogsport .inside {
    width: 100%; } }

/* MQ--DESKTOP */
.related .parteneri .inside .parteneri .inside .nume-parteneri {
  display: none !important; }

.C1 .supratitlu_categorie, .C3 .supratitlu_categorie {
  display: none; }

.parteneri .boxuri-parteneri .box-partener .adocean a img {
  max-height: 100%; }

.blogsport h1 {
  max-height: 60px;
  overflow: hidden; }

.blogsport_alb {
  display: none; }

.no_margin {
  margin-bottom: 0 !important;
  margin-top: 0 !important; }

.header-mic-contact .phone {
  display: none; }

.header-mic-contact:hover .phone {
  display: block;
  font-weight: bold; }

.header-mic-contact:hover .link {
  display: none; }

.item-plata .editie_digitala_buton {
  display: inline-block;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  background-color: #fad068;
  border-radius: 5px;
  padding: 3px 0 5px;
  width: 150px !important;
  float: right;
  border: none;
  min-width: 150px !important; }

.item-plata .editie_digitala_buton:hover {
  background-color: #e01b2f;
  color: #fff; }

.mysport .postare h1 {
  height: 60px;
  overflow: hidden; }

.box-cu-bulina .ziar p {
  height: 45px; }

.header-fix.pag-galerie {
  top: 0; }

.galerie .g-poza {
  top: 60px; }

.parteneri .boxuri-parteneri .box-partener.custom a {
  padding: 0; }

.parteneri .boxuri-parteneri .box-partener.custom a:hover img {
  box-shadow: none; }

.parteneri .boxuri-parteneri .box-partener.custom a img {
  max-height: 250px;
  height: 250px; }

.galerie .banner-container {
  top: 60px; }

.blogsport .poza-si-autor .wrapper {
  max-height: 169px;
  overflow: hidden; }

.ziar-first a {
  width: 276px;
  height: 396px; }

@media only screen and (max-width: 767px) {
  .box-agenda .table-container tr {
    display: none; }
  .box-agenda .table-container tr.show_mobile {
    display: block; }
  .citate .butoane-share {
    display: none; }
  .citate .butoane-share.only_mobile {
    display: block; } }

@media only screen and (max-width: 767px) {
  .no-mobile {
    display: none; } }

/** reclama 2015.04.15*/
.marquee-livescore a {
  color: #333333; }

.adocean {
  display: inline-block; }

.adocean > img {
  position: absolute; }

.hide {
  display: none !important; }

@media only screen and (max-width: 767px) {
  /*.box-partener.incinta:nth-child(2), */
  .box-partener.incinta:nth-child(3) {
    display: none; }
  .blogsport {
    margin-top: 0; } }

.monitorizare {
  position: absolute;
  width: 0;
  height: 0; }

.regulament_link {
  font-size: 18px;
  font-weight: bold; }
  .regulament_link:hover {
    color: #e01b2f;
    text-decoration: underline; }

.C1 .wrapper-poza .poza img, .C3 .wrapper-poza .poza img {
  max-width: 300px !important; }

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .articol .poza-articol .poza {
    height: auto !important; } }

.singlePartner {
  min-width: 276px !important; }

.blogsport-hidden {
  overflow: hidden;
  max-height: 280px; }

@media only screen and (max-width: 1024px) {
  .blogsport-hidden {
    max-height: 306px; }
  .blogsport h1 {
    max-height: 73px !important; } }

@media only screen and (max-width: 768px) {
  .blogsport h1 {
    max-height: 69px !important; } }

.nebun-sursa {
  float: left; }

@media only screen and (max-width: 1279px) and (min-width: 1025px) {
  .articol .poza-articol .poza {
    height: 600px !important; } }

@media only screen and (max-width: 767px) {
  .stiri-nebune-hp .box-partener.incinta:nth-child(2) {
    display: none; } }

/** fix banner pagina de galerie */
@media only screen and (min-width: 768px) {
  .header-fix.pag-galerie {
    height: 90px; } }

.sr-soccer-lmtcustom__fixed-height {
  height: 150px !important; }

.nomargintop {
  margin-top: 0px; }



.gazeta-digitala-login-wrapper {
  padding-top: 20px;
  margin-left: 623px;
}

.gazeta-digitala-login {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
  background-color: #fad068;
  border-radius: 5px;
  padding: 3px 15px 5px;
}