/*
 * Row with equal height columns
 * --------------------------------------------------
 */
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
}

h1,h2,h3,p {margin:0;font-weight: normal;}
input, textarea {
    -webkit-border-radius:0;
    border-radius:0;
    padding: 0;
    outline: none;
}
button {
   outline: none;
}

/* This used to work for parent element of button divs */

/* But it is not enough now, below dont hide play button parent div */

*::-webkit-media-controls-panel {
  display: none!important;
  -webkit-appearance: none;
}

/* Old shadow dom for play button */

*::--webkit-media-controls-play-button {
  display: none!important;
  -webkit-appearance: none;
}

/* New shadow dom for play button */

/* This one works */

*::-webkit-media-controls-start-playback-button {
  display: none!important;
  -webkit-appearance: none;
}



/* #Helper classes
================================================== */
a {
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
img {
    text-decoration: none;
}
.center_them {
     display:inline-block;
     zoom: 1;
    *display:inline;
}
.vertical_centering {
    display: table-cell;
    vertical-align: middle;
}
.vertical_centering_css3 {
    position: relative;
    float: left;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.anim {
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
}
.anim:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.anim:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}

.hoverable {
    overflow: hidden;
    z-index: 1;
    position: relative;
}
.hoverable:hover > .anim {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.hoverable:hover > .anim:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}

.infinite .anim_white {
  -moz-animation: anim-out-white 0.8s;
  -webkit-animation: anim-out-white 0.8s;
  animation: anim-out-white 0.8s infinite;
}
.infinite .anim_white:after {
  -moz-animation: anim-out-white-pseudo 0.8s;
  -webkit-animation: anim-out-white-pseudo 0.8s;
  animation: anim-out-white-pseudo 0.8s infinite;
}

@-webkit-keyframes anim-in {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-in {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-in {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-in {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-in-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.35);
  }
  100% {
    background: transparent;
  }
}
@-moz-keyframes anim-in-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.35);
  }
  100% {
    background: transparent;
  }
}
@-ms-keyframes anim-in-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.35);
  }
  100% {
    background: transparent;
  }
}
@keyframes anim-in-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.35);
  }
  100% {
    background: transparent;
  }
}
@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.35);
  }
  100% {
    background: transparent;
  }
}
@-moz-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.35);
  }
  100% {
    background: transparent;
  }
}
@-ms-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.35);
  }
  100% {
    background: transparent;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.35);
  }
  100% {
    background: transparent;
  }
}

.anim_white {
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
}
.anim_white:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.anim_white:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
/*
.hoverable:hover > .anim_white {
  -moz-animation: anim-out-white 0.75s;
  -webkit-animation: anim-out-white 0.75s;
  animation: anim-out-white 0.75s;
}
.hoverable:hover > .anim_white:after {
  -moz-animation: anim-out-white-pseudo 0.75s;
  -webkit-animation: anim-out-white-pseudo 0.75s;
  animation: anim-out-white-pseudo 0.75s;
}
*/
@-webkit-keyframes anim-in {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-in {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-in {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-in {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-in-pseudo {
  0% {
    background: rgba(255, 255, 255, 1);
  }
  100% {
    background: transparent;
  }
}
@-moz-keyframes anim-in-pseudo {
  0% {
    background: rgba(255, 255, 255, 1);
  }
  100% {
    background: transparent;
  }
}
@-ms-keyframes anim-in-pseudo {
  0% {
    background: rgba(255, 255, 255, 1);
  }
  100% {
    background: transparent;
  }
}
@keyframes anim-in-pseudo {
  0% {
    background: rgba(255, 255, 255, 1);
  }
  100% {
    background: transparent;
  }
}
/*
@-webkit-keyframes anim-out-white {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-out-white {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-out-white {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out-white {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
*/
@-webkit-keyframes anim-out-white-pseudo {
  0% {
    background: rgba(255, 255, 255, 1);
  }
  100% {
    background: transparent;
  }
}
@-moz-keyframes anim-out-white-pseudo {
  0% {
    background: rgba(255, 255, 255, 1);
  }
  100% {
    background: transparent;
  }
}
@-ms-keyframes anim-out-white-pseudo {
  0% {
    background: rgba(255, 255, 255, 1);
  }
  100% {
    background: transparent;
  }
}
@keyframes anim-out-white-pseudo {
  0% {
    background: rgba(255, 255, 255, 1);
  }
  100% {
    background: transparent;
  }
}
.clear { clear: both; }
.left { float: left; }
.right { float: right; }
.pointer {cursor: pointer;}
.relative {position: relative;}
.absolute {position:absolute;}
.absolute_n_coordinats {position:absolute;top:0;left:0;}
.invisible {display: none;}
.invisible-link {display: none;}
.block {display:block !important;}
.w100_important {width:100% !important;}
.h100 {height:100% !important;}
.center {text-align:center;}
.upper {text-transform: uppercase;}
.bold {font-weight:bold;}
.decor_none {text-decoration: none;}
.border_none {border: 0 !important;}
.box_sizing {box-sizing:border-box;}
.overflow_hidden {overflow: hidden;}
.clearfix {
   zoom:1;}
.clearfix:after {
   content: "";
   display: block;
   clear: both;
   height: 0;
}
.mt30 {margin-top:30px;}
.mb20 {margin-bottom:20px;}
.mb10 {margin-bottom:10px;}
.mt20 {margin-top:20px;}
.mt40 {margin-top:40px;}
.mr50 {margin-right:50px;}

@font-face {
    font-family: 'latoblack';
    src: url('fonts/lato-black-webfont.woff2') format('woff2'),
         url('fonts/lato-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'latohairline';
    src: url('fonts/lato-hairline-webfont.woff2') format('woff2'),
         url('fonts/lato-hairline-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'latolight';
    src: url('fonts/lato-light-webfont.woff2') format('woff2'),
         url('fonts/lato-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'latoregular';
    src: url('fonts/lato-regular-webfont.woff2') format('woff2'),
         url('fonts/lato-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* #Site styles
================================================== */
body {
   font-family: 'latoregular';
   font-weight: normal;
   font-size: 13px;
   width: 100%;
   overflow-x: hidden;
}
.index-page {
    background: rgb(102, 153, 255);
    background: -moz-linear-gradient(90deg, rgb(102, 153, 255) 0%, rgb(255, 102, 153) 110%);
    background: -webkit-linear-gradient(90deg, rgb(102, 153, 255) 0%, rgb(255, 102, 153) 110%);
    background: -o-linear-gradient(90deg, rgb(102, 153, 255) 0%, rgb(255, 102, 153) 110%);
    background: -ms-linear-gradient(90deg, rgb(102, 153, 255) 0%, rgb(255, 102, 153) 110%);
    background: linear-gradient(180deg, rgb(102, 153, 255) 0%, rgb(255, 102, 153) 110%);
    height: 100vh;
    position: relative;
}
header {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    height: 134px;
    position: relative;
    z-index: 900;
}
header:hover {
    background: #fff;
}
header:hover .logo-wrap a {
    background: url("../img/logo_hover.svg") no-repeat;
    background-size: 152px;
}
header:hover .link-holder a {
    color: #333333;
}
header .link-holder a {
    font-family: 'latoregular';
    font-size: 18px;
    color: #fff;
    margin-right: 24px;
    float: left;
}
header .link-holder a:hover, header .link-holder a.active{
    text-decoration: none;
    color: #672066;
}
header .link-holder a.active{
    font-family: 'latoblack';
}
header .link-holder {
    margin-top: 45px;
    position: relative;
    z-index: 1;
}
header .logo-wrap {
    float: left;
    margin-top: 25px;
}
.eu-logo {
    width: 150px;
    margin-top: -9px;
    margin-left: 25px;
}
.program-logo {
    width: 100px;
    margin-top: -23px;
}
header .logo-wrap a {
    display: inline-block;
    width: 152px;
    height: 81px;
    background: url("../img/logo.png") no-repeat;
    background-size: 152px;
}
header .right-links a:last-of-type {
    margin-right: 0;
}
.index-main-title {
    font-size: 66px;
    font-family: 'latohairline';
    color: #fff;
    margin-top: 120px;
    text-align: center;
    line-height: 74px;
    visibility: hidden;
    opacity: 0;
    transform: matrix(0, 0, 0, 0, 0, 0);
    position: relative;
}
.services-wrap {
    margin-top: 50px;
}
.services-wrap .service {
    font-size: 18px;
    /*font-family: 'latoblack';*/
    color: #fff;
    position: relative;
    margin-right: 38px;
    transition: none;
    /* transform: translateX(-1000px);

      transform: matrix(0.5, 0, 0, 0.5, -600, 0);
          transform: matrix(1, 0, 0, 1, 0, 0);*/
}
.services-wrap .service::after {
    position: absolute;
    top: 10px;
    left: -11px;
    width: 5px;
    height: 5px;
    content: "";
    background: #fff;
    border-radius: 500px;
}
.man {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 422px;
    height: 649px;
    background: url("../img/man.png") no-repeat;
    z-index: 3;
}
.woman {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 496px;
    height: 623px;
    background: url("../img/woman.png") no-repeat;
    z-index: 3;
}
.vector {
    position: absolute;
    bottom: 169px;
    right: 0;
    width: 100%;
    height: 309px;
    background: url("../img/vector.png") no-repeat center;
    z-index: 2;
}
.stats-wrap {
    position: absolute;
    bottom: 58px;
    left: 0;
    visibility: hidden;
    opacity: 0;
}
.stats-wrap .stats-box {
    position: relative;
    width: 50%;
}
.stats-wrap .stats-box:nth-child(1)::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 95px;
    background: rgba(255,255,255,0.4);
    content: "";
}
.stats-wrap .text {
    font-size: 25px;
    font-family: 'latolight';
    color: #fff;
    text-transform: uppercase;
}
.stats-wrap .num {
    font-size: 51px;
    font-family: 'latoblack';
    color: #fff;
    margin-bottom: 10px;
    line-height: 39px;
}

.hamburger {
  z-index: 2;
  display: none;
  position: absolute;
  left: 0;
  top: 16px;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; }

.hamburger-box {
  width: 25px;
  height: 20px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
.hamburger-inner, .hamburger-inner:before, .hamburger-inner:after {
    width: 25px;
    height: 2px;
    background-color: #525974;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
}
.hamburger-inner:before, .hamburger-inner:after {
    content: "";
    display: block; }
.hamburger-inner:before {
    top: -10px; }
.hamburger-inner:after {
    bottom: -10px;
}
.hamburger--slider .hamburger-inner {
  top: 2px; }
  .hamburger--slider .hamburger-inner:before {
    top: 9px;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s; }
  .hamburger--slider .hamburger-inner:after {
    top: 18px; }

.hamburger--slider.is-active .hamburger-inner {
    background: #000;
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner:before {
    -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
            transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; }
  .hamburger--slider.is-active .hamburger-inner:after {
          top: 20px;
    -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg);
            transform: translate3d(0, -20px, 0) rotate(-90deg);
            background: #000;
  }


footer {
    float: left;
    width: 100%;
    height: 266px;
    background: #333333;
}
.inner-page {
    background: #e4ebf7;
}
.inner-page header {
    background: #fff;
    box-shadow: 0 3px 10px 0 rgba(1,1,1,.2);
}
.inner-page header .logo-wrap a {
    background: url("../img/logo_hover.svg") no-repeat;
    background-size: 152px;
}
.inner-page header .link-holder a {
    color: #333333;
}
.inner-page header .link-holder a:hover, .inner-page header .link-holder a.active{
        text-decoration: none;
    color: #672066;
}
.sign-up-wrap {
    margin: 150px 0;
}
.sign-up-wrap .sign-up {
    display: inline-block;
    width: 360px;
    border: 1px solid #dde0e7;
    border-radius: 4px;
    background: #fff;
    padding: 25px 18px 18px 18px;
    text-align: left;
}
.sign-up .title {
    color: #333333;
    font-size: 24px;
    font-family: 'latolight';
    margin-bottom: 20px;
}
.sign-up .styled-input {
    height: 48px;
    border: 1px solid #e7e7e7;
    border-radius: 3px;
    padding: 0 18px;
    font-size: 16px;
    color: #8d9198;
    margin-bottom: 10px;
    font-family: 'latoregular';
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.sign-up .styled-input:focus, .contact-wrap .contacts .styled-input:focus, .contact-wrap .contacts .styled-textarea:focus, input:focus, .styled-input:focus, .styled-textarea:focus {
 /* -webkit-box-shadow: 0px 0px 10px 0px rgba(96,184,129,0.61);
  -moz-box-shadow: 0px 0px 10px 0px rgba(96,184,129,0.61);
  box-shadow: 0px 0px 10px 0px rgba(96,184,129,0.61);*/
  border-color: #60b881;
}
.sign-up .or {
    color: #666666;
    font-size: 16px;
    margin: 18px 0;

}
.sign-up .or a{
    color: #672066;
    text-decoration: underline;
}
.sign-up .or a:hover{
    color: #666;
    text-decoration: none;
}
.sign-up .link {
    color: #b0b5bc;
    font-size: 16px;
    margin-top: 12px;
}
.input-group {
    margin-top: 14px;
}
.input-group label {
    float: left;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    margin-top: 2px;
}

.input-group input[type="checkbox"] {
    display: none;
}
.style-radio input[type="checkbox"] ~ label:before {
    float: left;
    width: 16px;
    height: 16px;
    content: "";
    background: url("../img/not_checked.png") no-repeat;
    background-size: 16px;
}
.style-radio input[type="checkbox"]:checked ~ label:before {
    float: left;
    width: 16px;
    height: 16px;
    content: "";
    background: url("../img/checked.png") no-repeat;
    background-size: 16px;
}
input[type="checkbox"] ~ label:before {
    float: left;
    width: 17px;
    height: 15px;
    content: "";
    background: url("../img/not_checked2.png") no-repeat;
    background-size: 17px;
}
input[type="checkbox"]:checked ~ label:before {
    float: left;
    width: 17px;
    height: 15px;
    content: "";
    background: url("../img/checked2.png") no-repeat;
    background-size: 17px;
}
.input-group.style-radio label span {
    float: left;
    width: auto;
    margin-left: 8px;
    font-size: 14px;
    color: #b0b5bc;
    margin-top: 0;
    line-height: 16px;
}
input[type="checkbox"] ~ label span {
    float: right !important;
    margin-left: 0;
    width: calc(100% - 25px);
    font-size: 14px;
    color: #b0b5bc;
    line-height: 16px;
    margin-top: -2px;
}
.agree {
    margin-top: 2px;
    margin-bottom: 40px;
}
.green-btn {
    background: #60b881;
    height: 50px;
    line-height: 50px;
    padding: 0 37px;
    font-size: 20px;
    color: #fff;
    border: 0;
    cursor: pointer;
    border-radius: 3px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.green-btn:hover{
    background: #672066
}
.facebook {
    height: 50px;
    line-height: 50px;
    background: url("../img/fb.png") no-repeat #3b5998 20px 15px;
    background-size: 10px;
    font-size: 17px;
    color: #fff !important;
    text-decoration: none !important;
    padding-left: 60px;
    margin-bottom: 20px;
}
.twitter {
    height: 50px;
    line-height: 50px;
    background: url("../img/tw.png") no-repeat #00acee 15px 15px;
    background-size: 24px;
    font-size: 17px;
    color: #fff !important;
    text-decoration: none !important;
    padding-left: 60px;
}
footer .top-text {
    font-size: 16px;
    color: #cccccc;
    margin-top: 20px;
    margin-bottom: 25px;
}
footer .subscribe {
    width: 548px;
    height: 32px;
    border: 1px solid #999999;
}
footer .subscribe input {
    width: 300px;
    height: 32px;
    border: 0;
    background: none;
    font-size: 18px;
    color: #cccccc;
    font-family: 'latohairline';
}
footer .subscribe input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #cccccc;
}
footer .subscribe input::-moz-placeholder { /* Firefox 19+ */
  color: #cccccc;
}
footer .subscribe input:-ms-input-placeholder { /* IE 10+ */
  color: #cccccc;
}
footer .subscribe input:-moz-placeholder { /* Firefox 18- */
  color: #cccccc;
}
footer .subscribe button {
    height: 30px;
    background: #999999;
    color: #fff;
    border: 0;
    cursor: pointer;
     font-size: 15px;
    text-transform: uppercase;
    width: 120px;
}
.footer-links {
    margin: 34px 0;
}
.footer-links a {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    margin-right: 45px;
}
.footer-links a:last-of-type {
    margin-right: 0;
}
footer .copyright {
    color: #cccccc;
    font-size: 14px;
    font-family: 'latolight';
}
.plans-wrap .title {
    font-size: 25px;
    color: #666666;
    text-transform: uppercase;
    margin-top: 70px;
    margin-bottom: 15px;
}
.plans-wrap .sub-title {
    font-size: 18px;
    color: #999999;
    font-family: 'latolight';
}
.plans-boxes {
    padding: 0 70px;
    margin-top: 70px;
    margin-bottom: 150px;
}
.plans-boxes .box-wrap {
    width: 25%;
    padding-right: 12px;
}
.plans-boxes .box-wrap:last-of-type {
    padding-right: 0;
}
.plans-boxes .box {
    border-radius: 3px;
    background: #fff;
    padding-bottom: 35px;
    position: relative;
}
.plans-boxes .box .plan-name {
    color: #666666;
    font-size: 37px;
    font-family: 'latolight';
    margin-top: 40px;
    margin-bottom: 60px;
}
.plans-boxes .box .options {
    padding: 0 20px;
    min-height: 150px;
}
.plans-boxes .box .options p {
    font-size: 14px;
    color: #787c7e;
    font-weight: bold;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}
.plans-boxes .box .price {
    font-size: 30px;
    text-transform: uppercase;
    color: #666666;
}
.plans-boxes .box .choose-plan {
    margin-top: 25px;
}
.plans-boxes .box .choose-plan a {
    font-weight: bold;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    padding: 0 15px;
    height: 44px;
    line-height: 44px;
    display: inline-block;
    text-decoration: none !important;
}
.contact-wrap {
    min-height: 860px;
    background: url("../img/vector_big.png") no-repeat top right;
}
.contact-wrap .contacts {
    width: 675px;
    display: inline-block;
    margin-top: 150px;
}
.contact-wrap .contacts .title {
    color: #333333;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
}
.contact-wrap .contacts .sub-title {
    color: #666666;
    font-size: 18px;
    line-height: 34px;
}
.contact-wrap .contacts .input-holder {
    width: 50%;
    margin-top: 60px;
}
.contact-wrap .contacts .input-holder:nth-child(1) {
    padding-right: 15px;
}
.contact-wrap .contacts .input-holder:nth-child(2) {
    padding-left: 15px;
}
.contact-wrap .contacts .styled-input {
    height: 50px;
    padding: 0 18px;
    color: #25282d;
    font-size: 16px;
    font-family: 'latolight';
    border: 1px solid #fff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.contact-wrap .contacts::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #25282d;
}
.contact-wrap .contacts::-moz-placeholder { /* Firefox 19+ */
    color: #25282d;
}
.contact-wrap .contacts:-ms-input-placeholder { /* IE 10+ */
    color: #25282d;
}
.contact-wrap .contacts:-moz-placeholder { /* Firefox 18- */
    color: #25282d;
}
.contact-wrap .contacts .styled-textarea {
    padding: 18px;
    color: #25282d;
    font-size: 16px;
    font-family: 'latolight';
    border: 1px solid #fff;
    height: 240px;
    min-height: 240px;
    max-height: 240px;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    margin-top: 25px;
    resize: none;  -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.contact-wrap .contacts .green-btn {
    margin-top: 32px;
    padding: 0 47px;
}
.white-box {
    background: #fff;
    padding: 54px 0 74px 0;
    margin-top: 125px;
}
.white-box .title {
    font-size: 25px;
    color: #25282d;
    font-family: 'latolight';
    margin-bottom: 10px;
    line-height: 23px;
}
.white-box a {
    color: #3e84da;
    font-size: 18px;
    font-family: 'latolight';
}
.white-box .padding-fix {
    padding: 0 70px 0 160px;
}
.profile {
    background: #e4ebf7;
}
.profile .sidebar {
    width: 195px;
    background: #1b2133;
    min-height: 100vh;
}

.profile .p-logo {
    width: 100%;
    height: 72px;
    background: url(../img/logo_hover.svg) no-repeat #fff center;
    background-size: 95px;
}
.profile .user-wrap {
    margin-top: 18px;
    padding-left: 20px;
    padding-right: 10px;
}
.profile .user-wrap img {
    border-radius: 500px;
    border: 1px solid #3b435a;
}
.profile .user-wrap span {
    color: #e4ebf7;
    font-size: 18px;
    width: calc(100% - 67px);
}
.profile .links-col {
    padding-bottom: 53px;
    border-bottom: 2px solid #151b2d;
    border-top: 2px solid #151b2d;
    margin-top: 20px;
}
.profile .links-col .main {
    height: 35px;
    padding-left: 20px;
    color: #e4ebf7;
    line-height: 35px;
    font-size: 12px;
}
.profile .links-col .p-link {
    height: 45px;
    padding-left: 20px;
    position: relative;
}
.profile .links-col .img-wrap {
    width: 17px;
    margin-top: 15px;
}
.profile .links-col .txt {
    font-size: 16px;
    color: #e4ebf7;
    width: calc(100% - 25px);
    height: 45px;
    line-height: 45px;
}
.profile .links-col .active-l, .profile .links-col .p-link:hover {
    background: #0c1224;
}
.profile .links-col .active-l::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: #f45b63;
    content: "";
}
.profile .links-col .p-link .num {
    position: absolute;
    right: 20px;
    top: 11px;
    width: 26px;
    height: 26px;
    border-radius: 500px;
    background: #f45b63;
    line-height: 26px;
    font-size: 11px;
    color: #e4ebf7;
    text-align: center;
}
.profile .right-column {
    width: calc(100% - 195px);
}

.admin-header{
  float: left;
  width: 100%;
  padding: 16px 20px;
  background: #f2f6fc;
}
.search{
    padding-left: 35px;
    color: #515974;
    font-size: 16px;
    width: 300px;
    background: url("../img/search.svg") no-repeat left center;
    background-size: 20px;
    border: none
}
.profile-btns a{
    float: left;
    width: 40px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
}
.profile-btns a.settings-btn{
    background-image: url("../img/settings.svg");
}
.profile-btns a.notification-btn{
    background-image: url("../img/notification.svg");
}
.profile-btns a.notification-btn.active{
    background-image: url("../img/notification-red.svg");
}
.profile-btns a.lock-btn{
    background-image: url("../img/lock.svg");
    background-size: 16px;
}
.admin-box{
    float: left;
    width: 100%;
    margin: 10px 0;
    color: #333;
}
.admin-box-header{
  float: left;
  width: 100%;
  padding: 10px 20px;
  margin-bottom: 1px;
  -moz-border-radius-topleft: 3px;
  -webkit-border-top-left-radius: 3px;
  border-top-left-radius: 3px;
  -moz-border-radius-topright: 3px;
  -webkit-border-top-right-radius: 3px;
  border-top-right-radius: 3px;
   background: #f2f6fc;
}

.admin-box-title{
  text-align: left;
  font-family: 'latoblack';
  font-size: 16px;
  color: #515974;
  float: left;
  width: 100%;
}
.minimize{
    float: left;
    width: 25px;
    height: 22px;
    background: url("../img/minus.svg") no-repeat center;
    background-size: 13px;
}
.close{
    float: left;
    width: 25px;
    height: 22px;
    background: url("../img/cancel.svg") no-repeat center;
    background-size: 13px;
    margin-left: 5px;
}
.admin-box-content{
    float: left;
    width: 100%;
    background: #f2f6fc;
    -moz-border-radius-bottomleft: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
   padding: 15px;
}
.profile-content{
  float: left;
  width: 100%;
  padding: 25px;
}

.profile-column{
  width: 48%;
}
.profile-column-smaller{
    width: 44%;
}
.profile-column-bigger{
    width: 55%;
}
.profile-form{
  display: inline-block;
  text-align: left;
  width: 80%;
}
.input-hld{
  float: left;
  width: 100%;
}
.profile-column .input-hld{
    margin: 10px 0;
}
input{
  float: left;
  width: 100%;
  background: #fff;
  border: 1px solid #e7e7e7;
  font-family: 'latoregular';
  padding: 0 18px;
  font-size: 16px;
  color: #8d9198;
}

.profile input{
  height: 40px;
  line-height: 38px;
}
.profile input:focus{
    border-color: #515974;
}
.profile .green-btn{
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    margin-top: 10px;
}
.admin-box-content .input-group{
    margin-right: 20px;
}
.admin-box-content input[type="checkbox"] ~ label span{
    color: #333;
}
.plan-txt{
    color: #333;
    font-size: 18px;
}
.lighter{
    color: #8d9198;
}
.box-txt{
    float: left;
    width: 100%;
    margin: 5px 0;
}
.user-image{
    width: 110px;
}
.upload-hld{
    float: left;
    position: relative;
}
.upload-txt{
    padding-left: 20px;
    background: url("../img/attach.svg") no-repeat left center;
    background-size: 11px;
    color: #8d9198;
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
}
.profile .file{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.time-box-hld{
    float: left;
    width: 24%;
    margin-left: 1.33%;
    background: #fff;
    color: #999;
    height: 115px;
    display: table;
    text-align: center;
    border-radius: 7px;
}
.filter-box-hld{
    float: left;
    width: 24%;
    margin-left: 1%;
    color: #999;
    text-align: center;

}
.filter-box{
    float: left;
    width: 100%;
    border-radius: 7px;
    padding: 5px;
    position: relative;
   /* background: #fff url("../img/arrow.png") no-repeat right 10px;*/
}
.filter-drop{
    position: absolute;
    left: 0;
    top: 25px;
    width: 100%;
    background: #fff;
    border-radius: 7px;
    padding-top: 10px;
}
.filter-drop-row{
    float: left;
    width: 100%;
    cursor: pointer;
    padding: 5px;
}
.filter-drop-row:hover{
    color: #000;
}
.time-box-hld:first-of-type{
    margin-left: 0;
}
.time-box{
    display: table-cell;
    vertical-align: middle;
    padding: 10px;
}
.time-title{
    color: #787c7e;
    font-size: 18px;
    text-transform: uppercase;
}
.time-box .red{
    font-weight: bold;
    font-size: 18px;
}
.red{
    color: #f45b63;
}
.green{
    color: #51b748;
}
.table-hld{
    float: left;
    width: 100%;
    color: #999;
}
.table-row{
    float: left;
    width: 100%;
    border-top: 1px solid #e1e7f0;
    padding: 10px;
    display: table;
    position: relative;
}
.table-row:first-of-type{
    border: none
}
.table-td{
    display: table-cell;
    vertical-align: middle;
    padding: 0 5px;
    width: 100px;
}
.table-td-bigger{
    display: table-cell;
    vertical-align: middle;
    padding: 0 5px;
    width: calc(100% - 170px);
}
.table-td-user{
    display: table-cell;
    vertical-align: middle;
    padding: 0 5px;
    width: calc(100% - 240px);
    text-align: left;
}
.table-td-user img{
    border-radius: 100%;
}
.table-row .bold, table .bold, table th{
    color: #515974;
}
.table-row.readed .bold{
    font-weight: normal;
}
table{
    width: 100%;
}
table th{
    text-align: left;
}
table th, table td{
    padding: 5px;

}
table td{
    border-top: 1px solid #e1e7f0;
}
.user-name{
    display: table;
    height: 55px;
    width: calc(100% - 52px);
   float: right;
   color: #515974;
   font-weight: bold;
   text-align: left;
}
.user-name span{
    display: table-cell;
    vertical-align: middle;
}
.balance-box{
    display: inline-block;
    width: 75px;
    line-height: 30px;
    border-radius: 3px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    background: #57c059;
}
.balance-box.bad{
    background: #f45b63;
}
.chart_div{
    width: 100%;
    height: 500px;
}
.footer{
    float: left;
    width: 100%;
    background: #333;
    color: #ccc;
    line-height: 20px;
    padding: 25px 0;
}
.msg-link{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.msg-link:hover{
    background: rgba(0,0,0,0.06);
}
.messages .table-row{
    background: #e4ebf7;
}
.messages .table-row.readed{
    background: transparent;
}
.admin-box-txt{
    float: left;
    width: 100%;
    margin-top: 20px;
}
.back{
    float: left;
    padding-left: 30px;
    margin-top: 30px;
    background: url("../img/left-arrow.svg") no-repeat left center;
    background-size: 20px;
    color: #515974;
}
.back:hover{
    text-decoration: none;
}
.about-txt{
    font-size: 16px;
    margin-bottom: 30px;
}
.about-txt p{
  margin-top: 10px
}
.inner-img{
    float: left;
    margin: 0 10px 10px 0;
    max-width: 50%;
}
.news-hld{
    float: left;
    width: 100%;
    margin-bottom: 50px;
}
.news-box{
    float: left;
    width: 33.33%;
    padding: 0 10px;
    margin: 10px 0;
}
.news-img{
    float: left;
    width: 100%;
    height: 170px;
    text-align: center;
    overflow: hidden;
}
.news-img img{
    height: 100%;
}
.news-title{
    background: #fff;
    width: 100%;
    float: left;
    padding: 10px;
}
.news-title h2{
    font-size: 18px;
    height: 50px;
    overflow: hidden;
}
.no-results-found{
    width: 100%;
    float: left;
    text-align: center;
    font-size: 20px;
}
.w100 {width:100%;}
.mt10 {margin-top: 10px;}

.pagination {
    width: 100%;
    float: left;
    text-align: right;
}
.pagination a {
    display: inline-block;
    border: 1px solid #fff;
    background: #343a50;
    /*background: #1b2133; */
    padding: 5px 10px;
    color: #fff;
}
.pagination a.current, .pagination a:hover {
    background: #0c1224;
    position: relative;
    text-decoration: none;
}
.pagination a.current:after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: #f45b63;
    content: "";
}

label .top-tab {
    padding: 19px;
    background: #d6d6d6;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-weight: bold;
    opacity: 0.5;
    cursor: pointer;
}
label .top-tab.active {
    cursor: default;
    opacity: 1;
}
pre.tab-holder {
    background:#d6d6d6;
    padding:15px 10px;
    border-radius: 5px;
    color: #00158a;
    height: 430px;
    display: none;
}
pre.tab-holder.active {
    display: block;
}
pre ul {
    line-height: 10px;
}
.vat-style{
    float:left;
    width:100%;
    color:#787c7e;
    font-size:14px;
    font-weight: bold;
}