/* GENERAL */

html {
  background: var(--initial);
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-user-select: none;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

body {
  font: 13px/1.5 Roboto Light;
  margin: 0;
  padding: 0;
  flex: 1;
}

.d_on { display: table-cell; }
.m_on { display: none; }

.container {
  position: relative;
  max-width: 80%;
  margin: 0 auto;
}

.container:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: "\0020";
}

.container.half {
  width: 30%;
  margin: 0 auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.container.reader { width: 78%; margin-top: 10px; }

.container.page {
  background: #f7f7f7;
  padding: 30px 16px 45px 16px;  
  border-radius: 8px;
  margin-top: 40px;
  min-height: 100%;
}

.container.page hr{
  border: 0;
  height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 0 3px 0
}

.container.page hr.separator {
  border: 0;
  height: 0;
  border-top: 3px dashed rgba(0, 0, 0, 0.05);
  margin: 50px 0 30px 0
}
  
.container.none {
  padding: 30px 20px 15px 20px;  
  margin-top: 40px;
}

  
.headnote {
  text-align: left;
  font: normal 400 15px Roboto Light;
  line-height: 30px;
  border-bottom: dotted 1px #ccc;
  margin-bottom: 16px;
}
  
.mainbar { 
  display: inline-block;
  width: 79%;
  margin-bottom: 100px;
}

.sidebar { 
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  display: inline-block;
  width: 20%;
  vertical-align: top;
}
  
.mainbar.full { 
  width: 100%;
  margin-top: 30px;
}

.mainbar.fullwidth { 
  width: 100%;
}
  
.mainbar.left { 
  margin-right: 8px;
}
  
.mainbar.right { 
  margin-left: 8px;
}



header {
  position:fixed;
  color: #fff;
  top:0; left:0;
  width:100%;
  height: auto;
  z-index:1000;
  padding: 0 10px 6px 10px;
}


header.black {
  background: var(--color2);
  background: url('//img.weo.ro/patterns/section.png') repeat; 
  background: url('//img.weo.ro/patterns/section.png') repeat, linear-gradient(to right, #000, var(--color2) 70%);
  -webkit-box-shadow: 0 0 8px 0 var(--color1);
  -moz-box-shadow: 0 0 8px 0 var(--color1);
  box-shadow: 0 0 8px 0 var(--color1);
}


header.red {
  background: var(--color1);
  background: url('//img.weo.ro/patterns/section.png') repeat; 
  background: url('//img.weo.ro/patterns/section.png') repeat, linear-gradient(to right, var(--color1), var(--color3) 80%);
  -webkit-box-shadow: 0 0 8px 0 #var(--color1);
  -moz-box-shadow: 0 0 8px 0 var(--color1);
  box-shadow: 0 0 8px 0 var(--color1);
}


.navbar {
  position: relative; 
  margin: 0 auto;  
  max-width: 80%;
}

.logo {  
  float: left;
  width: 150px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.2s ease-out;
}

.logo:hover { transition: 0.1s ease-in; transform: scale(1.04); }

.logo img {
  width: 100%;
  height: auto;
  align-self: flex-start;
  padding-top: 12px;
}


.logo-text {
  float: left;
  display: flex;
  font: normal 400 22px Roboto Bold;
  color: #ddd;
  justify-content: center;
  margin-top: 17px;
}


/* NAVIGATION */

nav { float: right; }
nav ul { list-style: none; margin: 0; padding: 0; }
nav ul li { float: left; position: relative; }

nav ul li a, nav ul li a:visited {
  display: block; 
  color: #fff !important;
  font: normal 100 16px Roboto Thin;
  text-decoration: none;
  padding: 8px 8px 4px 8px;
  margin: 17px 0 0 0;
}

nav ul li a:hover, nav ul li a:visited:hover { color: #ddd; transition: 0.2s;  }
nav ul li.has-child > a:after{ content: ' ▾'; }

nav ul li ul { width: 140px; margin-top: 11px; }
nav ul li ul li { min-width: 150px; text-align: center; }

nav ul li ul li a { 
  background: var(--color2);
  color: #fff !important;
  padding: 12px 10px 8px 10px;  
  font: normal 400 12px Roboto Thin;
  line-height: 18px; 
  border-bottom: solid 1px var(--color3);
  -webkit-tap-highlight-color: var(--color3);
  margin-top: 0;
}

nav ul li ul li a:hover, 
nav ul li ul li a:visited:hover, 
nav ul li ul li a:focus:hover, 
nav ul li ul li a:target :hover { background: var(--color3); color: #fff; outline: 0; }

.nav-dropdown {
  position: absolute;
  display: none;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

nav ul li a.accent { 
  font: normal 400 20px Roboto Bold; 
  color: #fff;
  margin-right: 0;
}
  
nav ul li a.accent:hover { color: #ddd; }
nav ul li a:active { transform: translateY(3px); }
.nav-mobile { display: none; }




/* SECTION */

section { top: 0; left: 0; }

section.home { padding: 40px 0 20px 0; }
section.maxi { padding: 32px 0 32px 0; }
section.mini { padding: 20px 0 20px 0; }

section.full { width: 100%; padding: 0; }
section.full h3 { padding: 0; margin: 0; }

section.full div.container { 
  position: relative; 
  width: 100%; 
  margin: 0 auto; 
}

section.full div.container img { 
  width: 100%; 
  height: auto; 
  object-fit: cover; 
}

section h1 {
  font: normal 400 32px Roboto Black;
  border-bottom: dotted 1px #ccc;
  margin: 0 0 26px 0; 
}

section h1 span {
  font: normal 400 24px Roboto Regular;
}

section h2  {
  font: normal 400 22px Roboto Bold;
  margin: 0 0 10px 0; 
}

section h3  {
  font: normal 400 18px Roboto Bold;
  line-height: 24px;
  margin: 10px 0 10px 0; 
}

section h3 span.dot  {
  display: inline-block;
  background: #A11E4D; 
  color: #fff;
  width: 24px; 
  height: 24px;
  border-radius: 50%;
  padding: 3px;
  text-align: center;
}

section h4  {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
}

section h4.group  {
  font: normal 400 18px Roboto Black;
  line-height: 24px;
  margin: 30px 0 20px 0; 
  border-bottom: dashed 1px #e5e5e5;
}

section h5  { 
  font: normal 400 15px Roboto Black;
  color: #d7d7d7;
  margin: 6px 0 16px 0;
}

section h5.big  { 
  font: normal 400 20px Roboto Black;
  color: #d7d7d7;
  text-transform: uppercase;
  padding-bottom: 8px;
  margin: 6px 0 20px 0;
  border-bottom: dashed 1px #e5e5e5;
}


section p, .sub.own  {
  font: normal 400 14px Roboto Light !important;
  line-height: 26px !important;
  margin-bottom: 10px;
}


.sub { padding-left: 15px; }

.sub.own div { color: red !important; }

.sub.own div ul li { line-height: 53px !important; }


section p a  {
  color: #A11E4D;
  font-weight: 600;
}

section p span  {
  font-size: 18px; 
  font-weight: 700;
  font-family: "Fira Sans", Helvetica, sans-serif;
}

section p.sub div  { padding-left: 15px !important; }

section p.subtext.reduce  { margin: 8px 0 4px 0; }


section div.sides  {
  display: inline-block;
  position: relative;
  vertical-align: top;
  margin-right: 40px;
}


.fee  { 
  font: normal 400 14px Roboto Regular;
}

.fee span  { 
  font: normal 400 11px Roboto Light;
}


#light-section {
  background-image: url("//img.weo.ro/patterns/light.png");
  background-repeat: repeat;
  background-attachment: fixed; 
}
#light-section h2 { color: #333; }
#light-section p { color: #222; }


#dark-section  { 
  background: #000 url('//img.weo.ro/patterns/section.png') repeat; 
  color: #fff; 
}

#colored-section  { 
background: url('//img.weo.ro/patterns/polygons.png') repeat, linear-gradient(to bottom, var(--color1) 0%, var(--color1) 40%, var(--color3) 100%);
  color: #fff; 
}

#reversed-section  { 
background: url('//img.weo.ro/patterns/polygons.png') repeat, linear-gradient(to bottom, var(--color3) 0%, var(--color3) 40%, var(--color1) 100%);
  color: #fff; 
}

#colored-section h1, #colored-section h2,
#colored-section h1, #colored-section h2 { 
  color: #fff; 
}


#accent  { 
  background: var(--color3);
  background: url('//img.weo.ro/patterns/section.png') repeat; 
  background: url('//img.weo.ro/patterns/section.png') repeat, linear-gradient(to right, var(--color3), var(--color2) 120%);
  color: #fff; 
}

#contrast  { 
  background: var(--ABG3);
  color: var(--ACL1); 
}


#info-section  { 
background: url('//img.weo.ro/sections/info.jpg') repeat, linear-gradient(to bottom, var(--color1) 0%, var(--color1) 40%, var(--color3) 100%);
  color: #fff; 
}

#taxes-section  { 
background: url('//img.weo.ro/sections/taxes.jpg') repeat, linear-gradient(to bottom, var(--color1) 0%, var(--color1) 40%, var(--color3) 100%);
  color: #fff; 
}

#location-section  { 
  background: url('//img.weo.ro/sections/location.jpg') no-repeat center center; 
  display: block;
  position: relative;
}


#location-section::after {
    content: "";
    background: rgb(0, 0, 0, 0.9);
    position: absolute;
    top: 0; left: 0;
    right: 0; bottom: 0;
    z-index: 1;
}

#location-section > * {
    z-index: 10;
}


#info-section, #location-section, #taxes-section  { 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: #fff; 
}


section div.division  {
  display: inline-block;
  background: none;
  color: #fff;
  font: normal 400 10px Roboto Bold;
  border: dashed 1px #fff;
  border-radius: 8px;
  padding: 9px 5px 0 5px;
  margin: 0 2px 7px 0;
}

section div.division:hover { border: solid 1px #fff; cursor: pointer; }


section div.division span  {
  display: inline-block;
  font: normal 400 10px Roboto Regular;
  margin: 0 3px 8px 0;
}



/* STICKY INFO */

.sticky {
  font: normal 400 9px Roboto Light;
  text-align: center;
  padding: 6px 3px 4px 3px;
}


.sticky.lime { background: var(--color2); color: #fff; }
.sticky.yellow { background: #f5a02c; color: #111; }
.sticky.black { background: #111; color: #eee; }

.sticky span { 
  font: normal 400 16px Roboto Bold; 
  text-transform: capitalize; 
}



/* BREDCRUMB */

.bredcrumb  { 
  color: #fff;
  padding: 32px 0 15px 0;
  margin: 30px 0 0 0;
}

.bredcrumb.cover  { 
  position: relative;
  background-size: cover;
  filter: grayscale(10%);
}

.bredcrumb.cover:before  { 
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.9);
  opacity: 0.8;
}

.bredcrumb .avatar { float: left; padding-left: 5px; margin-top: -16px; }
.bredcrumb .avatar img { 
  display: block;
  width: 55px;
  height:55px;
  border: solid 3px #f5a02c;
  border-radius: 50%;
  margin: 8px 10px 0 0; 
  padding: 1px;
  clear: left;
}

.bredcrumb .avatar .rank { 
  position: absolute;
  background: #000;
  color: #f5a02c;
  font: normal 400 9px Roboto Light;
  text-align: center;
  min-width: 50px;
  border-radius: 2px;
  margin: -10px 0 0 5px;
  border: solid 1px #f5a02c;
  padding: 1px 0 0 0;
  transform: rotate(-2deg);
}

.bredcrumb .hello { 
  font-size: 20px;
  margin: -12px 6px 0 6px;
  line-height: 28px;
}

.bredcrumb .step { 
  font-size: 14px;
  margin: 0 6px 0 6px; 
}

.bredcrumb a.logout i   { 
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.bredcrumb.cover h1  { 
  font: normal 900 32px Roboto Regular;
  text-transform: uppercase;
  color: #fff;
}

.bredcrumb.cover h1 span  { 
  float: right;
  font: normal 100 20px Roboto Thin;
  text-transform: none;
  margin-top: 5px;
}

.bredcrumb.cover img.pack  { 
  position: absolute;
  float: right;
  width: 45px;
  height: 45px;
  right: 10px;
  bottom: 3px;
  padding: 1px;
}

.bredcrumb.cover div.ranks  { 
  position: absolute;
  top: 20px; left: 240px; 
}

.bredcrumb.cover a.sel  { 
  display: inline-block;
  color: #ddd;
  font: normal 400 14px Roboto Bold;
  text-align: center;
  border-radius: 4px;
  padding: 7px 12px 2px 12px;
}

.bredcrumb.cover a.sel.on { background: var(--color3); border: solid 1px var(--color3); box-shadow: 0 0 10px var(--color3); }
.bredcrumb.cover a.sel.off { background: #111; color: #ddd; border: solid 1px var(--color3);  }
.bredcrumb.cover a.sel:active { transform: translateY(3px); }
.bredcrumb.cover a.sel:hover { box-shadow: 2px 0 10px var(--color3); }






/* MENU LINK */

.menu.link {
  display: inline-block;
  position: relative;
  background: #f8f9fa;
  color: #111;
  width: 20%;
  height: 30px;
  text-align: center;
  border: solid 1px #d5d5d5;
  border-radius: 8px;
  padding: 10px 2px 8px 2px;
  margin: 0 1px 3px 0;
  vertical-align: top;
  box-shadow: 0 .15rem 1.75rem 0 rgba(33, 37, 41, .15);
  transition: .1s ease; 
}

.menu.link:active { transform: translateY(3px); }
.menu.link:hover { border: solid 1px #ccc; box-shadow: 0 0 0 1px #fff; transition: .5s ease; }

.menu.link i { color: #222; font-size: 20px; }
.menu.link span.title { display: block; font: normal 400 8.7px Roboto Light; margin-top: 4px; }
.menu.link span.title.min { font-size: 7.5px; }

.menu.link span.notification { 
  display: block;
  position: absolute;
  font: normal 400 9px Roboto Light;
  letter-spacing: -1px;
  width: 12px;
  height: 12px;
  line-height: 15px;
  border-radius: 50%;
  top: 6px;
  right: 3px;
  vertical-align: middle;
  padding: 2px;
}

.menu.link span.notification.red { background: #ec1c22; color: #fff; }
.menu.link span.notification.accent { background: #f5a02c; color: #000; }
.menu.link span.notification.black { background: #444; color: #fff; }
.menu.link span.notification.small { font: normal 100 7px Roboto Regular; line-height: 17px; }
.menu.link span.notification.inactive { background: #ccc; color: #fff; }

.menu.link.dev {
  background: #fff;
  width: 101.5px;
  height: 60px;
  padding: 20px 2px 14px 2px;
  margin: 0 5px 6px 0;
}

.menu.link.dev span.notification { line-height: 15px; top: 16px; right: 3px; }
.menu.link.dev span.title { display: block; font: normal 400 14px Roboto Bold; margin-top: 4px; }
.menu.link.dev span.link { display: block; color: #bbb; font: normal 400 10px Roboto Light; margin-top: 4px; }
.menu.link.dev i { color: #222; font-size: 26px; }

.menu.link.dev.inactive span.title, .menu.link.dev.inactive i   { color: #ccc; }




/*  SPOT ON */


.spotted {  
  display: inline-block;
  width: 32%;
  overflow: auto;
  white-space: nowrap;
  border-radius: 8px;
  margin: 0; 
}

.spotted:nth-child(3n) { margin-right: 0; }



/*  TABS */

.tabs {
  background: var(--color3);
  overflow: auto;
  white-space: nowrap;
  margin: 0 0 2px 0;
  font-size: 0;
}

.tabs a.small.sticky {
  position: sticky;
  left: 0; z-index: 3;
  background: var(--color1);
}

.tabs a.offset:not(.sticky):first-of-type {
  margin-left: 37px;
}

.tabs::-webkit-scrollbar{ height: 10px; }
.tabs::-webkit-scrollbar-track { background: var(--color2); }
.tabs::-webkit-scrollbar-thumb { background: var(--color1); }
.tabs.draggable { cursor: grab; }
.tabs.dragging { cursor: grabbing; }

.tabs a, .tabs b { 
  display: inline-block;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  color: #eee;
  font: normal 400 11px Roboto Light;
  padding: 10px 8px 4px 8px;
  border-right: solid 1px #333;
  cursor: pointer; 
  position: relative;
  vertical-align: top;
  text-align: center;
}

.tabs a:hover { background: var(--color1); }
.tabs a.active, .tabs b.active { font-weight: 900 !important; background: var(--color1);  }


.tabs a.min  { min-width: 24px !important; }
.tabs i { font-size: 14px; color: #fff;}

.tabs a.small, .tabs b.small  { min-width: 20px;  padding-bottom: 5px;  }
.tabs a.medium, .tabs b.medium  { min-width: 70px; }
.tabs a.big i, .tabs a.dropbtn i { font-size: 14px; }

.tabs a span { 
  float: right;
  text-align: center;
  font-size: 7px;
  min-width: 16px;
  border-radius: 3px;
  padding: 1px 2px 0 2px;
  margin: 0 0 0 4px;
}



/*  SUBTABS */

.subtabs {
  background: var(--color1);
  overflow: auto;
  white-space: nowrap;
  margin: 0;
  font-size: 0;
}

.subtabs::-webkit-scrollbar{ height: 6px; }
.subtabs::-webkit-scrollbar-track { background: var(--color1); }
.subtabs::-webkit-scrollbar-thumb { background: var(--color3); }
.subtabs.draggable { cursor: grab; }
.subtabs.dragging { cursor: grabbing; }


.subtabs a, .subtabs b { 
  display: inline-block;
  justify-content: center;
  align-items: center;
  min-width: 90px;
  color: #fff;
  font: normal 400 10px Roboto Regular;
  padding: 10px 10px 3px 10px;
  border-right: solid 1px var(--color1);
  cursor: pointer; 
  position: relative;
  vertical-align: top;
  text-align: center;
}

.subtabs a:hover { background: var(--color3); }
.subtabs a.active, .subtabs b.active { font-weight: 900 !important; color: #fff; }

.subtabs a span { 
  float: right;
  text-align: center;
  font-size: 7px;
  min-width: 16px;
  border-radius: 3px;
  padding: 1px 2px 0 2px;
  margin: 0 0 0 4px;
}


.clearfix.tabs {  margin-bottom: 6px; }




/*  TAB DROPDOWN */

.dropdown { 
  display: inline-block;

}

/* Hidden by default */
.dropdown-content {
  display: none;
  position: absolute;
  background: #000;
  min-width: 160px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border: solid 1px #ccc;
  z-index: 999;
}

.dropdown-content a {
  width: 90%;
  font: normal 400 12px Roboto Light;
  border-bottom: solid 1px #333;
  padding: 9px 8px 4px 8px;
  display: block;
  text-align: left;
}

.dropdown-content a:last-child {
  border: 0;
}

.dropdown-content a:hover {
  background: var(--color3);
}

/* Show the dropdown content when the class 'show' is added */
.show {
  display: block;
}





/*  RESULTS SEARCH */

#results {
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-top: -20px; 
}

#results li a {
  display: block;
  background: #ffffe6;
  border: 1px solid #ccc;
  font: normal 400 14px Roboto Regular;
  text-decoration: none;
  margin-top: -1px;
  padding: 14px 12px 8px 12px;
  cursor: pointer;
}

#results li a:hover { background: #ffffb3; }
#results li { width: 260px; }
#results li a.lastword { font-size: 22px; color: red !important; }




/*  TOOLS */

.tools { margin: 12px 0 12px 0; }



/*  RULEBOX */

.rulebox {
  display: block;
  font: normal 400 12px Roboto Regular;
  line-height: 20px;
  padding: 8px;
  border-bottom: solid 1px #ddd; 
  margin-bottom: 6px;
  vertical-align: top;
}

.rulebox.last {
  padding-bottom: 20px; 
  margin-bottom: 30px;
  border-bottom: dotted 2px #ddd; 
}

.rulebox .image { float: left;  overflow: auto; margin-top: -4px; }

.rulebox .image img { 
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: solid 1px #ddd;
  margin: 0 6px 0 0;
  object-fit: cover;
}

.rulebox div.title { 
  font: normal 400 16px Roboto Bold;
  padding: 5px 0 4px 0;
}


/*  DIVBOX */

.divbox {  
  display: block;
  background: #fff;
  font: normal 400 12px Roboto Regular;
  line-height: 20px;
  padding: 10px 8px 3px 8px;
  margin-bottom: 6px;
  border: solid 1px #ddd;
  border-radius: 6px;
  vertical-align: top;
  box-shadow: 0 .15rem 1.75rem 0 rgba(33, 37, 41, .15);
  transition: 1s ease;
}

.divbox:hover {  
  -webkit-box-shadow: 11px 6px 20px -2px rgba(161,161,161,0.89); 
  box-shadow: 11px 6px 20px -2px rgba(161,161,161,0.89);
  transition: .5s ease; 
}

.half, .third, .fourth, .fourths, .sixth, .sixths { display: inline-block; margin: 0 3px 8px 0; }

.half { width: calc(48% - 3px); }
.third { width: calc(31.2% - 3px); }
.fourth { width: calc(22.8% - 3px); }
.sixth { width: 13.8%; ; }

.half:nth-child(2n+1), .third:nth-child(3n+2),
.fourth:nth-child(4n+2), .sixth:nth-child(6n+2) { margin-right: 0; }

.mini4 { display: inline-block; width: 10%; margin: 0 15px 8px 0; }

.mini4 img.circle { 
  display: inline-block;
  border: solid 4px #fff;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
  box-shadow: 0 .15rem 1.75rem 0 rgba(33, 37, 41, .15);
}

.divbox.highlighted { background: #fff; color: #F5A02C }

.divbox.dark { 
  background: #eee;
  border: solid 1px #ccc;
  padding: 7px 8px 0 8px;
}

.divbox.yellow { 
  background: #fff;
  color: #994d00;
  border: dashed 1px #ddd;
  padding: 11px 8px 2px 8px;
}

.divbox.yellow:hover { background: #fff; color: #000; border: dashed 1px #ccc; }

.divbox.empty {  
  background: none;
  border: 0;
  padding: 0 6px 0 6px;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}


.divbox.row { 
  border: 0;
  padding: 9px 6px 4px 6px;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  border-bottom: solid 1px #ccc;
}

.divbox.row:hover  { background: #f2ffcc; }
.divbox.row:active { transform: translateY(3px); }
.divbox.row.visited { background: #faefcd; text-decoration: line-through; }
 
.divbox.large { padding: 20px 12px 12px 12px; }
.divbox.strike { text-decoration: line-through; }


.divbox span.tag { 
  display: inline-block;
  background: #e1e1e1;
  font: normal 400 10px Roboto Regular;
  padding: 8px 6px 2px 6px;
  margin: 2px 4px 3px 0;
  border-radius: 8px;
}


.divbox span.tag img { 
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid 1px #aaa;
  border-radius: 50%;
  object-fit: cover;
  margin-top: -4px;
  vertical-align: middle;
}

.divbox a#confirm { 
  background: #e21d35;
  color: #eee;
  font: normal 400 12px Roboto Bold;
  padding: 5px 5px 4px 5px;
  margin: 0 14px 0 0;
  border-radius: 3px;
}

.divbox a#confirm i { font-size: 10px; color: #eee; }

.divbox.basic { background: #fff; cursor: auto;  }
.orders.basic:hover { background: none; }


.divbox b { font: normal 400 13px Roboto Bold; }
.divbox g { font: normal 600 11px Roboto Regular; color: #666699; }
.divbox strong { font: normal 400 15px Roboto Bold; }
.divbox hr { height: 1px; border-bottom: dotted 1px #ccc; margin: 0 0 9px 0; }
.divbox hr.last { height: 1px; border-bottom: dotted 1px #ccc; margin: 0 0 3px 0; }

.divbox span { 
  font: normal 400 11px Roboto Light;
  border-radius: 3px;
  padding: -3px 2px 0 0;
  vertical-align: middle;
}

.divbox span.blank { 
  background: #ccc; 
  color: #333; 
  font: normal 400 9px Roboto Medium;
  min-width: 16px;
  border-radius: 3px;
  padding: 2px 5px 0 5px;
  margin-left: 3px;
}
.divbox div.image, .divbox div.rectangle,
.divbox div.icon, .divbox div.ico,
.divbox div.thumb { float: left; overflow: auto; }

.divbox div.image img { 
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: solid 2px var(--ABG1);
  margin: 0 6px 0 0;
  object-fit: cover;
  box-shadow: 0 .15rem 1.75rem 0 rgba(33, 37, 41, .15);
}


.divbox div.thumb img { 
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 6px;
  border: solid 1px #ddd;
  margin-right: 8px;
  object-fit: cover;
}



.divbox div.rectangle{
  width: 98%;
  background: #f2ffcc;
  overflow: auto; 
  padding: 6px;
}

.divbox div.rectangle img { 
  float: left;
  width: 150px;
  height: auto;
  border-radius: 4px;
  border: solid 1px #ddd;
  margin: 0 6px 0 0;
  object-fit: cover;
  box-shadow: 0 .15rem 1.75rem 0 rgba(33, 37, 41, .15);
}

.divbox div.rectangle span.info { 
  font: normal 400 14px Roboto Light; 
  line-height: 22px;
  color: #222; 
  padding: 12px 0 10px 0;
  vertical-align: middle;
}


.divbox div.image span.shadow {  
  position: absolute;
  font: normal 400 8px Roboto Light;
  background: #aaa;
  color: #fff;
  margin: 18px 0 0 0px;
  text-align: center;
  padding: 1px 3px 1px 3px;
  transform: rotate(-3deg); 
}


.divbox div.banner img { 
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  border: solid 1px var(--ABG1);
  margin-right: 10px;
  object-fit: cover;
}

.divbox div.icon img { 
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: solid 1px var(--ABG1);
  margin: 0 6px 0 0;
}


.divbox div.ico img { 
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin: 0 6px 0 0;
}


.divbox div.caption { 
  display: block;
  font: normal 400 12px Roboto Regular;
  padding: 10px 0 4px 0;
}


.divbox div.title { 
  font: normal 400 16px Roboto Bold;
  border-bottom: dashed 1px #ccc;
  padding: 5px 0 4px 0;
  width: 72%; 
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical; 
  white-space: nowrap; 
  margin-bottom: 10px;
}

.divbox div.title.small { font: normal 400 13px Roboto Bold; }

.divbox div.title.only { border-bottom: none; }
.divbox div.title.break { margin-bottom: 10px; }
.divbox div.title.more { width: 94%; }
.divbox div.title.full { width: 100%; }
.divbox div.title.labeled { display: inline; width: 100%; align-items:center; }
.divbox div.title.entire { width: 100%; white-space: normal;  }

.divbox div.title.l2 { 
  font: normal 400 15px Roboto Bold;
  width: 100%; 
  height: 35px; 
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal; 
}

.divbox div.title a.back { font: normal 400 20px Roboto Bold; }
.divbox div.title div.sub { font: normal 400 12px Roboto Light; }
.divbox div.title div.sub b { font: normal 400 12px Roboto Bold; }
.divbox div.title span.min { font: normal 400 14px Roboto Light; text-transform: capitalize; }
.divbox div.title i { font-size: 12px; margin-top: -6px; }

.divbox div.stats { 
  font: normal 400 10px Roboto Light; 
  padding: 2px 0 8px 0;
}

.divbox div.stats.oneline { 
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical; 
  white-space: nowrap; 
}

.divbox div.stats div.target { display: inline; width: 33%; }


.divbox span.lbl { 
  position: relative;
  display: inline-block;
  min-width: 35px;
  font: normal 400 9px Roboto Light;
  text-align: center;
  color: #fff;
  border-radius: 2px;
  padding: 2px 4px 1px 4px;
}

.divbox span.lbl.red { background: #e21d35; }
.divbox span.lbl.pink { background: #FF69B4; }
.divbox span.lbl.violet { background: #666699; }
.divbox span.lbl.orange { background: #df8020; }
.divbox span.lbl.yellow { background: #f5a02c; }
.divbox span.lbl.lime { background: #99cc00; }
.divbox span.lbl.green { background: #19b319; }
.divbox span.lbl.blue { background: #2B88F7; }
.divbox span.lbl.dark { background: #777; }
.divbox span.lbl.gray { background: #d1d1d1; color: #111; }

.divbox span.low { text-transform: lowercase; } 

.divbox span.lbl.link { min-width: auto !important; padding: 3px; font-size: 9px; color: #fff; }
.divbox span.lbl.link:active { transform: translateY(2px); }

.divbox span.lbl.mini { min-width: 16px !important; font-weight: 900; color: #000; }
.divbox span.lbl.mini.white { background: #ddd; }


.divbox span.lbl b { font-size: 9px;}



.divbox span.button { 
  float: right;
  color: #333; 
  font: normal 400 10px Roboto Light;
  border-radius: 3px;
  border: solid 1px #333;
  padding: 2px 6px 0 6px;
}

.divbox span.button.read { background: #d2f0ca; color: #49c32c; border-color: #49c32c; }
.divbox span.button.unread { background: #fdd6d7; color: #f55c5d; border-color: #f55c5d; }


.divbox span.status { 
  font: normal 400 10px Roboto Light;
  color: #fff;
  min-width: 45px;
  text-align: center;
  text-transform: lowercase;
  border-radius: 3px;
  padding: 2px;
}

.divbox span.status.green { background: #36BB45; }
.divbox span.status.red { background: #e21d35; }
.divbox span.status.orange { background: #f5a02c; }
.divbox span.status.blue { background: #2B88F7; }


.divbox div.info { 
  overflow: hidden;
  font: normal 400 14px Roboto Regular; 
  line-height: 26px;
  color: #222; 
  padding: 12px 0 10px 0;
  clear: both;
  -webkit-user-select: text;
}

.divbox div.pack { 
  min-height: 220px;
  font: normal 400 13px Roboto Light; 
  line-height: 26px;
  color: #222; 
  padding: 12px 0 10px 0;
  clear: both;
  -webkit-user-select: text;
}

.divbox div.pack div.items { 
  display: flex; 
  background: #eee; 
  font: normal 400 10px Roboto Light; 
  line-height: 15px;
  padding: 6px 4px 4px 4px;
  border-bottom: solid 1px #ddd;
  -webkit-user-select: text; 
  justify-content: left; 
  text-align: left;
}

.divbox div.pack div.items:nth-of-type(2n) { background: #fff; }
.divbox div.pack div.items span { color: #f5a02c; font-size: 13px;  }

.divbox div.price { 
  font: normal 400 40px Roboto Black; 
  padding: 20px 0 4px 0;
}

.divbox div.price span { 
  position: relative;
  bottom: 5px;
  font: normal 400 20px Roboto Light; 
}

.divbox div.price span span { 
  position: relative;
  margin: -2px 0 0 2px;
  font: normal 400 12px Roboto Light; 
}

.divbox a.pack { 
  background: #f5a02c;
  color: #eee;
  font: normal 400 14px Roboto Regular; 
  padding: 12px 20px 6px 20px;
  border-radius: 5px;
  border: solid 1px #eabf38;
}

.divbox a.owned { 
  background: #fff;
  color: #f5a02c;
  font: normal 400 14px Roboto Regular; 
  padding: 12px 20px 6px 20px;
  border-radius: 5px;
  border: solid 1px #f5a02c;
}

.divbox a.subs { 
  font: normal 400 11px Roboto Light; 
  text-decoration: underline;
  padding: 120px 20px 12px 20px;
  margin: 300px 0 20px 0;
}


.divbox span.priority { 
  display: inline-block;
  min-width: 36px;
  text-align: center;
  color: #fff;
  font: normal 400 9px Roboto Light;
  padding: 3px 6px 1px 6px;
}

.divbox span.priority.standard { background: #19b319; }
.divbox span.priority.recomandat { background: #df8020; }
.divbox span.priority.important { background: #e21d35; }
.divbox span.priority.inactive { background: #d1d1d1; }



.divbox span.reads { 
  font: normal 400 10px Roboto Light;
  padding: 3px 4px 1px 4px;
}

.divbox.end {  
  border-bottom-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
  box-shadow: 0 .15rem 1.75rem 0 rgba(33, 37, 41, .15);
}


.divbox div.person {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.divbox div.person img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: solid 1px #ccc;
  object-fit: cover;
}

.divbox div.person img + i {
  position: absolute;
  bottom: 0px; left: 14px;
  font-size: 9px;
  background: #fff;
  color: #f5a02c;
  border-radius: 50%;
  padding: 1px;
}



.divbox div.person span { font: normal 400 11px Roboto Regular; padding-top: 5px;   }
.divbox div.person span.x2 { font: normal 400 15px Roboto Medium;  }



.divbox div.person span.place { 
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  width: 16px;
  height: 14px;
  border-radius: 50%;
  font: normal 400 10px Roboto Light;
  letter-spacing: -1px;
  text-align: center;
  vertical-align: middle;
  margin-left: 0.2px;
  object-fit: cover;
}


.divbox div.person.x2 img { width: 24px; height: 24px; }
.divbox div.person span.place.x2 { width: 25px; height: 20px; padding-top: 4px; font: normal 400 16px Roboto Regular; }

.divbox div.start { 
  display: inline-block;
  font: normal 400 12px Roboto Bold; 
  color: #aaa; 
  padding: 4px 0 4px 0;
}

.divbox div.start.w100 { width: 90px; margin: auto; }



.divbox time { margin-left: auto; font: normal 400 9px Roboto LightItalic; margin-top: 5px;  }


.divbox div.person-badge {  
  position: absolute;
  width: 24px; 
  height: 24px;
  margin-top: -20px;
  text-align: center;
}

.divbox div.person-badge img {  
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: .2s ease-out; 
}

.divbox div.info-badge {  
  position: absolute;     
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FF69B4;
  color: #fff;
  width: 24px; 
  height: 24px;
  border-radius: 50%;
  margin-top: -20px;
}


.divbox div.info-badge.M { background: #666699; }
.divbox div.info-badge.F { background: #FF69B4; }




/*  COUNTDOWN */

#countdown  { 
  display: block;
  font: normal 400 40px Roboto Bold;
  letter-spacing: 1px;
}

#remaining {  
  display: block;
  font: normal 400 15px Roboto Regular;
  letter-spacing: 1px;
}

#remaining span { display: inline-block; width: 4.6%; }





/*  SECTIONS */

.sections {  
  display: inline-block;  
  vertical-align: top;
  width: 10.2%;
  margin: 0 10px 14px 0;
  transition: 0.3s ease-in-out;
}

.sections img { 
  clip-path: circle(50%);
  object-fit: cover; 
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.sections span {   
  display: block;
  color: #fff;
  font: normal 400 11px Roboto Regular;
  text-align: center;
  padding: 4px 0 2px 0;
  margin-top: 6px;
}

.sections:hover { transition: 0.2s; transform: scale(1.04); }



/*  JURY */

.jury {
  display: inline-block;
  vertical-align: top;
  width: calc(14% - 12px);
  margin-bottom: 14px;  
  border: solid 4px var(--color3);
  border-radius: 6px;
  box-sizing: border-box;
  transition: 0.3s ease-in-out;
}

.jury:hover { transition: 0.2s; transform: scale(1.04); }

.jury.x4 { width: calc(18% - 7px); margin-right: 8px; }
.jury.x6 { width: calc(16% - 7px); margin-right: 6px; }

.jury img { 
  width: 100%; 
  object-fit: cover; 
}

.jury div.info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px; /* spațiu între steag și nume */
  width: 100%;
  background: var(--color3);
  color: #fff;
  font: normal 400 15px Roboto Regular;
  padding: 8px 6px 2px 6px;
  box-sizing: border-box;
  border-top: solid 4px var(--color3);
  margin-top: -4px;
}

.jury div.flag {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.jury div.flag::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 1px #fff inset;
  pointer-events: none;
}

.jury div.flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.jury div.name {
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}


.jury.circle { margin-right: 20px; border: 0; }
.jury.circle  div.flag { width: 40px; height: 40px; margin: -50px 0 0 10px; }

.jury.circle img {  
  border-radius: 50%;  
  border: solid 4px var(--color3);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.jury.circle span { background: none;  margin-top: 6px; }

.jury.maxi { width: 18%;  margin: 0 30px 14px 0; }
.jury.maxi span {   font: normal 400 17px Roboto Regular  }
.jury.maxi div.flag { width: 50px; height: 50px; margin: -60px 0 0 10px; }




/*  LOCATION */

.location {  
  display: inline-block;
  background: #eee;
  width: 23.3%;
  vertical-align: top;
  margin: 0 6px 18px 0;
  border: solid 5px #eee;
  border-radius: 6px;
  filter: grayscale(100%);
  opacity: 1; transition: 0.1s ease-in-out;
}

.location:hover { filter: grayscale(0%); transition: 0.1s; transform: scale(1.01);}


/*  FLAGS */

.flags  { 
  display: inline-block;
  width: 4%; 
  margin: 0 10px 12px 0;
}

.flags img  { 
  width: 100%; 
  border-radius: 50%;
  border: solid 3px #fff;
  object-fit: fill;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.flags span {   
  display: block;
  color: #000;
  font: normal 400 10px Roboto Regular;
  text-align: center;
  margin-top: 6px;
  padding-left: 5px;
}


/*  PARTNERS */

.partners  { 
  display: inline-block;
  background: #fff;
  vertical-align: top;
  border: solid #fff;
  border-radius: 8px;
  padding: 6px;
  margin: 0 4px 12px 0;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.partners.mini  { width: 15.5%; min-height: 60px; border-width: 1px; margin-right: 6px; }

.partners.maxi  { width: 23%; border-width: 6px; }
.partners.maxi:nth-child(4n) { margin-right: 0; }

.partners img { opacity: 1; transition: 0.2s ease-in-out; }
.partners:hover img { opacity: 0.8; transition: 0.2s; transform: scale(1.04);}
.partners div.overlay { position: relative; overflow: hidden; }

.partners div.overlay::after{
  content: "";
  background: rgba(0,0,0,0.05);
  position: absolute;
  display: block;
  width:100%;
  top:0;
  left:0;
  height:100%;
  transition: 0.2s ease-in-out;
}

.partners div.overlay:hover::after { 
  content: ""; 
  background: rgba(0,0,0,0.02); 
  transition: 0.2s ease-in-out; 
}

.partners div.name {   
  display: block;  
  width: 100%;
  color: #666;  
  font: normal 400 13px Roboto Light;
  text-align: center;
  padding-top: 14px;
}



/*  OFFERS */

.offers  { 
  display: inline-block;
  background: #fff;
  color: #777;
  border: solid 1px #eee;
  border-radius: 8px;
  vertical-align: top;
  padding: 8px;
  margin: 0 5px 12px 0;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.offers.maxi  { width: 48%; }
.offers:nth-child(2n+1) { margin-right: 0;}


.offers div.preview { float:left; width: 40%; margin-right: 12px;}
.offers div.preview img { transition: 0.2s ease-in-out;  }
.offers div.preview:hover img { transition: 0.2s; transform: scale(1.04);}

.offers div.overlay { position: relative; overflow: hidden; }
.offers div.overlay::after{
  content: "";
  background: rgba(0,0,0,0.2);
  position: absolute;
  display: block;
  width:100%;
  top:0;
  left:0;
  height:100%;
  transition: 0.2s ease-in-out;
}

.offers div.overlay:hover::after { 
  content: ""; 
  background: rgba(0,0,0,0.01); 
  transition: 0.2s ease-in-out; 
}


.offers div.call { 
  float: right;
  font: normal 400 12px Roboto Light;
  padding: 8px 0 3px 0;
}

.offers div.name { 
  overflow: auto;
  text-align: left;
  font: normal 400 20px Roboto Bold;
  text-transform: uppercase;
  line-height: 30px;
  border-bottom: dotted 1px #ddd;
  padding-top: 8px;
}

.offers div.info { 
  overflow: auto;
  text-align: left;
  font: normal 400 12px Roboto Light;
  line-height: 18px;
  border-bottom: dotted 1px #ddd;
  padding-top: 2px;
}


/*  COMPETITOR */

.competitor  { 
  position: relative;
  display: inline-block;
  width: 31%;
  vertical-align: top;
  border: solid 2px #ddd;
  border-radius: 8px;
  padding: 8px;
  margin: 0 4px 12px 0;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

video::-webkit-media-controls-volume-slider {  display: none; }
video::-webkit-media-controls-mute-button {  display: none; }


.competitor span.votes { 
  display: block;
  position: absolute;
  font: normal 400 15px Roboto Regular;
  letter-spacing: -1px;
  background: #f5a02c;
  color: #fff;
  width: 60px;
  height: 13px;
  border-radius: 3px;
  top: 18px;
  right: 16px;
  vertical-align: middle;
  padding: 6px;
}




/*  PRIZES */

.prizes  { 
  position: relative;
  display: inline-block;
  width: 22%;
  vertical-align: top;
  border: solid 2px #BF953F;
  border-radius: 8px;
  padding: 2px;
  margin: 0 4px 12px 0;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.prizes.gold { background:linear-gradient(to right, #B38728, #FBF5B7, #AA771C); }
.prizes img { transition: 0.2s ease-in-out; }
.prizes div:hover img { transition: 0.2s; transform: scale(1.04);}

.prizes div.overlay { position: relative; overflow: hidden; }
.prizes div.overlay::after{
  content: "";
  background: rgba(0,0,0,0.01);
  position: absolute;
  display: block;
  width:100%;
  top:0;
  left:0;
  height:100%;
  transition: 0.2s ease-in-out;
}

.prizes div.overlay:hover::after { 
  content: ""; 
  background: rgba(0,0,0,0.05); 
  transition: 0.2s ease-in-out; 
}

.prizes div.value {   
  position: absolute;
  color: #6d4e16;  
  font: normal 400 30px Roboto Bold;
  letter-spacing: -1px;
  top: 50%;
  padding-left: 12px;
}

.prizes div.value span { font: normal 400 22px Roboto Light; }


.prizes div.name {   
  display: block;  
  width: 100%;
  color: #7d6229;  
  font: normal 700 15px Roboto Light;
  text-align: center;
  padding: 12px 0 4px 0;
}





/*  CARD */

.fullcard { width: 100%; margin-bottom: 10px; }

.halfcard { 
  display: inline-block;
  width: 49.3%; 
  vertical-align: top;
  margin: 0 3px 12px 0;
}

.halfcard:nth-child(2n) { margin-right: 0; }
.halfcard.click { cursor: pointer; }

.card.title {
  position: relative;
  background: var(--color1);
  color: #ddd; 
  font: normal 400 18px Roboto Medium;
  padding: 6px 12px 2px 12px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card.title span { font: normal 400 12px Roboto Light; text-transform: none; }
.card.title a, .card.title i { font-size: 16px;  }


.card.title .config i { 
  margin-top: 3px; 
  color: #ddd; 
  font-size: 15px;
  vertical-align: middle;
}


.card.content {
  background: #fff;
  font: normal 400 14px Roboto Regular;
  margin-bottom: 30px;
  border-bottom-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
}


.card.content hr { height: 1px; border-bottom: dotted 1px #ccc; margin: 0 0 18px 0; }
.card.content hr.last { margin-bottom: 25px; }

.card.mainbox {
  background: #fff;
  font-size: 14px;  
  border-bottom-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
  margin-bottom: 10px;
  transition: 1s ease;
  border: solid 3px var(--color1);
  border-top: none;
}

.card.content.large, .card.mainbox.large { padding: 16px 10px 20px 10px;  }
.card.content.small, .card.mainbox.small { padding: 8px 10px 10px 10px;  }
.card.content.none, .card.mainbox.none { padding: 0; box-shadow: none; background: none; }


.card.items {
  font-size: 14px;
  margin-top: 10px;
  box-shadow: none;
}

.card.items.min { margin-top: 1px; }

.card.boxes {
  background: #fff;
  vertical-align: top;
  text-align: center;
  cursor: pointer;
  border: solid 1px #ddd;
  border-radius: 6px;
}

.card.boxes.image, .card.boxes.flyers  {
  display: inline-block;
  width: 23%;
  padding: 4px;
  margin: 0 4px 4px 0;
}

.card.boxes.icons {
  display: inline-block;
  width: 23%;
  padding: 14px;
  margin: 0 4px 12px 0;
}

.card.boxes.videos  {
  display: inline-block;
  width: 31.6%;
  padding: 4px;
  margin: 0 4px 8px 0;
}

.card.boxes.videos:nth-child(3n+2) { margin-right: 0; }

.card.boxes i { display: block; font-size: 60px; margin: 4px 0 8px 0; }
.card.boxes img { display: block; margin-bottom: 8px; }
.card.boxes span { font: normal 400 13px Roboto Regular; }


.card.blocks { 
  font: normal 400 18px Roboto Regular;
}

.b3 {
  background: #fff;
  vertical-align: top;
  cursor: pointer;
  border: solid 1px #ccc;
  border-radius: 6px;
  padding: 16px 12px 10px 12px;
  margin: 4px 0 4px 0;
}

.card.blocks .b3:nth-child(3n) { margin-right: 0; }


.topcard {  
  overflow: auto; 
  background:  var(--color2);
  background: url('../img/layout/section.png') repeat; 
  background: url('../img/layout/section.png') repeat, linear-gradient(to left bottom,  var(--color2),  var(--color1) 70%);
  color: #fff; 
  font-size: 15px;
  font-weight: 500;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 8px 8px 3px 8px;
}

.bodycard {
  background:  #fff;
  border: solid 6px #fff;
  border-radius: 6px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 3px 2px 3px 2px;
  margin: 0 3px 0 0;
}

.card span.notice { 
  display: block;
  font-size: 12px; 
  font-style: italic;
  line-height: 1.1;
}

.card span.small { 
  font-size: 12px; 
  font-style: italic;
}

.card span.total { 
  font-size: 18px; 
  font-weight: 900;
}


.fullcard span { font-size: 16px; font-weight: 900; text-decoration: underline; }
.fullcard time { font-size: 12px; font-style: italic; }

.item-image { position: relative; float: left;   }
.item-image img {
  display: block;
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  margin: 0 8px 6px 0;
  object-fit: cover;
}

.item-image.circle img { width: 70px; height: 70px; border-radius: 50%; }
.item-image.square img { width: 70px; height: 70px; border-radius: 4px; }
.item-image.rectangle img { width: 70px; height: auto; border-radius: 4px; }


.item-image div.series { 
  position:absolute; 
  background: #2c588f;
  color: #eee;
  max-width: 90%;
  font: normal 700 15px Roboto Regular;
  border-radius: 6px;
  border: solid 2px #eee;
  padding: 1px 3px 0 3px;
  left: 19px;
  bottom: 16px;
  vertical-align: middle;
  margin: auto;
}


.item-badge {
  position:absolute; 
  background: #ddd;
  border-radius: 50%; 
  padding: 2px;
  width: 24px;
  height: 24px;
  line-height: 24px; 
  border: solid 2px #fff;
  margin-top: -32px;
}

.item-badge i { 
  position: absolute;
  display: block;
  font-size: 16px;
  color: #fff;   
  top: 5px;
  bottom: 0;
  left: 1px;
  right: 0;
  text-align: center;
  vertical-align: moddle;
  margin: auto;
}

.item-badge b { 
  position: absolute;
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #fff;   
  top: 3px;
  bottom: 0;
  left: 1px;
  right: 0;
  text-align: center;
  vertical-align: middle;
  margin: auto;
}
  
.item-badge.blue { background: #2c588f; }
.item-badge.orange { background: #f5a02c; }
.item-badge.red { background: #e21d35; }
.item-badge.green { background: #36BB45; }


.item-info { overflow: hidden; font-size: 13px; margin: 2px 6px 0 6px; line-height: 15px; }
.item-info .item-event { font-size: 15px; font-weight: 900; text-transform: uppercase; }

.item-info hr { height: 1px; border-bottom: dotted 1px #ccc; margin: 1px 0 10px 0; }


.item-info span.name { 
  display: inline-block; 
  max-width: 90%;
  font: normal 900 15px Roboto Bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; 
}


.item-info span { font-size: 12px; font-weight: 400; }
.item-info span b { font-size: 12px; font-weight: 800; }
.item-info span.name i { font-size: 13px; font-weight: 400; }
.item-info span.dots { font-size: 10px; font-weight: 400; }
.item-info small { font-size: 12px; font-weight: 400; }
.item-info time { float: right; font-size: 13px; }

ul.item-tools { 
  display: flex; 
  border-radius: 4px; 
  list-style-type: none; 
  padding: 0; 
  margin-bottom: 3px;
}

ul.item-tools li { 
  background: #e1e1e1; 
  border-right: solid 1px #fff; 
  border-radius: 0;
  font: normal 400 9px Roboto Light;
  padding: 8px 3px 2px 3px;
  cursor: pointer;
}

ul.item-tools li:hover { background: #e3e3e3; }

ul.item-tools li { position: relative; }

ul.item-tools li .tip {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 8px 3px 2px 3px;
  background: #e1e1e1;
  display: none;
  text-align: center;
  font: normal 400 9px Roboto Light;
  white-space: nowrap;
}

ul.item-tools li:hover .tip { display: block; }
ul.item-tools li .tip .v { font-weight: 700; }



ul.item-tools li a { display: block; }

ul.item-tools li i { 
  background: #fff; 
  border-radius: 50%;
  padding: 2px; 
}


ul.item-tools li i.grey { color: #777; }
ul.item-tools li i.green { color: #36BB45; }
ul.item-tools li i.red { color: #e21d35; }
ul.item-tools li i.orange { color: #f5a02c; }

ul.item-tools li i.on { color: #36BB45; }
ul.item-tools li i.off { color: #bbb; }

ul.item-tools li.w15 { flex: 15%; }
ul.item-tools li.w20 { flex: 20%; }
ul.item-tools li.w25 { flex: 25%; }
ul.item-tools li.w30 { flex: 30%; }
ul.item-tools li.w33 { flex: 33%; }
ul.item-tools li.w35 { flex: 35%; }
ul.item-tools li.w40 { flex: 40%; }
ul.item-tools li.w50 { flex: 50%; }
ul.item-tools li.w60 { flex: 60%; }
ul.item-tools li.w70 { flex: 70%; }
ul.item-tools li.w80 { flex: 80%; }

ul.item-tools > li:last-child { border-right: none; }

.schedule-info { overflow: auto; margin: 8px 6px 0 6px; }
.schedule-info span { font-size: 14px; font-weight: 400; }

.entry-number { 
  float: left; 
  display: block;
  background: #f5a02c;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  width: 40px;
  height: 24px; 
  text-align: center;
  line-height: 28px;
  border-radius: 4px;
  margin: -3px 8px 1px 0; 
}

.id-number { 
  display: block;
  background: #eee;
  color: #333;
  min-width: 36px;
  text-align: center;
  border-radius: 4px;
  border: solid 1px #bbb;
  margin: 3px 8px 1px 0; 
}


.entry-name { 
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
 }

.entry-option { 
  float: right;
  font-size: 14px;
  font-weight: 900;
 }
 
 .entry-option i { color: #fff; }

.endcard {
  background: #ac1e51 url('../img/layout/section.png') repeat; 
  color: #fff; 
  font-size: 12px;
  font-weight: 400;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 8px 8px 6px 8px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.endcard span { 
  font-size: 11px;
  font-weight: 400;
  border: solid 1px #fff;
  border-radius: 4px;
  padding: 1px 4px 1px 4px;
 }

.endcard time { 
  margin-top: 5px;
 }


.users { 
  display: inline-block;
  background: #eee;
  width: 24%; 
  padding-top: 8px;
  margin: 0 3px 12px 0;
  border-radius: 4px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.user.image img { 
  display: block;
  border: solid 4px #f5a02c;
  margin: 0 auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.user.image.circle img { width: 70px; height: 70px; border-radius: 50%; }

.user.name { 
  display: block;
  font-size: 12px;
  padding-top: 4px;
}




/*  SUBMISSIONS */

.submission .topcard {  
  background: #373450;
  color: #fff; 
  font-size: 15px;
  line-height: 18px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 6px 8px 1px 8px;
}

.submission .topcard i {  
  font-size: 18px;
}

.submission .bodycard {
  background: var(--background);
  border-radius: 6px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 1px 2px 1px 2px;
  margin: 0 3px 0 0;
}

.submission hr {
  height: 1px;
  border-bottom: dotted 1px #ccc;
  margin: 4px 0 4px 0
}

.submission .image { float: left; }
.submission .image img { 
  display: block;
  width: 36px;
  height: 36px;
  border: solid 1px #fff;
  border-radius: 50%;
  margin: 0 6px 6px 0;
}

.submission .dance { 
  overflow-y:hidden; 
  font-size: 13px; 
  font-weight: 700;
  text-transform: uppercase;
}

.submission .school { 
  overflow: auto; 
  font-size: 10px; 
  font-weight: 300; 
  line-height: 20px; 
  text-transform: uppercase;
}

.submission time { 
  font-size: 11px; 
}

.submission .bodyinfo { overflow: auto; margin: 8px 6px 0 6px; }
.submission .bodyinfo span { font-size: 15px; font-weight: 900; }
.submission .bodyinfo small { font-size: 12px; font-weight: 400; }
.submission .bodyinfo time { float: right; font-size: 13px; }

.submission .endcard {
  background: #373450;
  color: #fff; 
  font-size: 12px;
  font-weight: 400;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 8px 8px 6px 8px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


/*  SCHEDULER */


.schedules {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.schedules.days-1 { flex-direction: column; }
.schedules.days-2 .scheduler,
.schedules.days-3 .scheduler { flex: 1; }

table.scheduler {
  display: table;
  width: 100%;
  margin-bottom: 40px;
  box-sizing: content-box;
  border-collapse: collapse;
  table-layout: fixed;
}


thead {  border: solid 4px #fff; }
thead tr td {  background: var(--color1); color: var(--initial); border: solid 1px #fff; }
thead i { color: #fff; margin-left: 10px; }

thead.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}

thead th.red, tfoot td.red { background: var(--color3); }


tr {
  display: table-row;
  background: #e7e7e7;
  border: solid 1px #fff;
  cursor: pointer;
}

tr:nth-of-type(2n) {   
  background: #f9f9f9; }

tr:hover { background: #ddd; }


th, td { position: relative; }

td a {
    display: block; 
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-decoration: none;
    color: var(--initial);
  }


td .dot {
  position: relative;
  display: inline-block;
  min-width: 30px;
  font: normal 400 9px Roboto Light;
  text-align: center;
  color: #fff;
  border-radius: 3px;
  vertical-align: middle;
  padding: 2px 4px 1px 4px;
  margin-right: 3px;
}

td span.dot b { font: normal 400 10px Roboto Black; color: #fff; }

td .dot.red { background: #e21d35; }
td .dot.pink { background: #ff4da6; }
td .dot.indigo { background: #990099; }
td .dot.violet { background: #4d0594; }
td .dot.blue { background: #4d6dcb; }
td .dot.ciel { background: #08a8dd; }
td .dot.teal { background: #009999; }
td .dot.green { background: #19b319; }
td .dot.lime { background: #99cc00; }
td .dot.yellow { background: #cccc00; }
td .dot.orange { background: #df8020; }
td .dot.dark { background: #777; }
td .dot.gray { background: #d1d1d1; color: #111; }


td.title { font: normal 400 18px Roboto Regular; vertical-align: middle; padding: 10px 8px 8px 8px; }
td.title a { width: 100%; }
td.title b { font-family: Roboto Black; }

td hr { height: 1px; margin: 0 0 3px 0; }

td span {
  font: normal 400 12px Roboto Light;
  text-transform: lowercase;
}

td span.name {
  font: normal 400 13px Roboto Regular;
  text-transform: none;
}
 

td.entry {
  font: normal 400 15px Roboto Regular;
  border: solid 1px #fff;
  background: #ddd;
  vertical-align: middle;
  padding: 15px 10px 10px 10px;
}


td.huge { font: normal 400 20px Roboto Black; white-space: nowrap; }


td.max { font: normal 400 17px Roboto Black; }
td.med { font: normal 400 20px Roboto Regular; }
td.min { font: normal 400 11px Roboto Regular; }

td.entry.none a { color: #222; }
td.gala, td.gala a { background: #f7b355 !important; color: var(--color1) !important; }
td.break, td.break a { background: var(--color3) !important; color: #fff !important; }

td.entry.red, td.entry.red a { background: var(--color1); color: #fff; }
td.entry.black, td.entry.black a { background: #000; color: #ddd; }
td.entry.white, td.entry.white a { background: #eee; color: #000 !important; }
td.entry.yellow, td.entry.yellow a { background: #f7b355 !important; color: #000 !important; }
td.entry.accent, td.entry.accent a { background: var(--color1); color: #fff; }



td.type {
  background: #ddd;
  vertical-align: middle;
  padding: 0 6px 0 12px;
}

td.type b { font: normal 400 18px Roboto Bold; }
td.type.r { text-align: right; padding-right: 20px; }




/*  HOTKEYS */

.hotkey {
  display: inline-block;
  margin-right: 4px;   
}

.keyicon {  
  display: inline-block;
  width: 70px;
  font-size: 10px;
  border: solid 1px #636363;
  border-radius: 6px;
  padding: 2px 2px 0 2px;
  transition: 0.3s ease-in-out;
}

.keyicon:hover { transition: 0.2s; transform: scale(1.05); }
.keyicon.youtube { background: #FF0000; color: #eee; }
.keyicon.instagram { background: #E1306C; color: #eee; }
.keyicon.facebook { background: #4267B2; color: #eee; }
.keyicon.tiktok { background: #111; color: #eee; }





.nav  { 
  color: #2c588f;
  font-size: 18px;
  font-weight: 400;
  border: solid 1px #2c588f;
  border-radius: 3px;
  padding: 5px 10px 5px 10px;
}

.nav.active  { 
  background: #2c588f;
  color: #fff;
}

.page-buttons { text-align: left; margin-top: 20px; }


.downbar { display: none; }


/*  FOOTER */

footer {
  position: relative;
  bottom: 0;
  width:100%;
  background: #f1f1f1;
  text-align: center;
  padding:8px 0 8px 0; 
}


.credits {
  background: #222;
  color: #636363;
  font-size: 12px;
  padding: 12px 0 8px 0;
}

.copyright { float: left; }
.developer { float: right; }
.copyright, .developer { font-size: 11px; }
.copyright a, .developer a { color: #959595; }


.img-replace {
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
}




/* BANNER */

.banner {  
  position: relative;
  width: 100%;
  height: 52vh;
}

.banner video {
  position: absolute;
  background: black;
  width: 100%; 
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

.banner .mask {   
  position: absolute;
  background: black;
  width: 100%;
  z-index: -100; 
}



/* SLITEXT */

.slitext {
  font: normal 400 50px Roboto Bold;
  letter-spacing: -2px;
  text-align: center;
  color: #fff;
  height: 90px;
  margin-top: -90px;
}

.slitext span.text {
  padding: 4px 16px 2px 16px;
}

.slitext span.light { font: normal 400 60px Roboto Light; }



