/* Minification failed. Returning unminified contents.
(4230,47): run-time error CSS1046: Expect comma, found '255'
(4230,55): run-time error CSS1046: Expect comma, found '/'
(4231,39): run-time error CSS1046: Expect comma, found '255'
(4231,47): run-time error CSS1046: Expect comma, found '/'
 */
.preloader,
.preloader__spinner, .preloader__img {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.preloader {
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  z-index: 999998;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.preloader__img{
	position: absolute;
	 margin: auto;
	 width:35px;
	z-index: 999999;
}
.preloader__spinner {
  position: absolute;
  margin: auto;
  z-index: 999999;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  -webkit-animation: spinnerAnimation 1s ease-in-out infinite;
          animation: spinnerAnimation 1s ease-in-out infinite;
}
@-webkit-keyframes spinnerAnimation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spinnerAnimation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.preloader::before,
.preloader::after {
  content: '';
  display: block;
  position: absolute;
  width: 200%;
  height: 50%;
  left: -50%;
  background: #034255;
  -webkit-transition: all 1s ease-in;
  transition: all 1s ease-in;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.preloader:before {
  top: 0;
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.preloader:after {
  bottom: 0;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
.preloader.active {
  opacity: 0;
}
.preloader.active .preloader__spinner {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  opacity: 0;
}
.preloader.active:before,
.preloader.active:after {
  -webkit-transform: scaleY(0) rotate(25deg);
          transform: scaleY(0) rotate(25deg);
}
/* =======================================
1. Basic & general
======================================== */
body {
    margin: 0;
    padding: 0;
    font-family: 'WorkSansRegular';
    letter-spacing: 0.5px;
    background-color: #f8f8f8;
    overflow-x: hidden;
   /* overflow-y: hidden;*/
    line-height: 22px;
    -webkit-user-select: none; /* Safari 3.1+ */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard syntax */
}

.navbar-toggle {
    top: 40px;
    right: 10px;
    background: #fff;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #297a69;
}

.beats-group .form-control, .beats-group .btn {
    border-radius: 0;
}

.beats-navbar {
    background: #155268 url("../BLP/images/banner.png") no-repeat;
    background-size: 100% 100%;
    border: 0;
    box-shadow: none;
    border-radius: 0 !important;
    /*height: 80px !important;*/
}

.beats-logo {
    opacity: 1;
    position: relative;
    /*top: 24px;*/
    /*overflow: hidden;*/
    /*font-size: 125px;*/
    color: #fff;
    /*text-shadow: 0px 0px 10px #4c4c4c;*/
    transition: opacity .5s linear;
}

.beats-logo-fixed {
    font-size: 130px;
    color: #fff;
    text-shadow: 0px 0px 10px #4c4c4c;
}



.logo {
   /* margin-top: -46px;*/
}
    .logo a:hover, .logo a:focus {
        text-decoration: none;
    }



.nav_bg_price {
    background: #145267;
}

.mt-6em {
    margin-top: 6em;
}
.fnt13pt {font-size:13pt;
}
.captchtxt {
    display: inline-block;
    width: 55%;
    height: 34px;
    padding: 6px 0px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #039be6;
    outline: none;
}
    .captchtxt:focus, .captchtxt:active {
        border-bottom: 1px solid #1277D9;
        outline: none;
    }

.fixed {
    position: fixed;
    border: none;
    top: 0;
    left: 0;
    width: 100%;
    /*padding: 0 !important;*/
    z-index: 3;
}

.fixedClr {
    background: #034255;
}

#cookiesModal ul {
    margin-left: 15px;
    padding: 0;
}

    #cookiesModal ul ul {
        margin-left: 30px;
        padding: 0;
    }

.cookies_part, .cookies_part_confirmed {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    display: none;
    z-index: 99;
}

    .cookies_part a {
        color: #30c0c4;
    }

    .cookies_part .btnset {
        margin-top: 8px;
    }

    .cookies_part_confirmed .btnset {
        margin-top: -5px;
    }

    .cookies_part .cookie_txt, .cookies_part_confirmed .cookie_txt {
        color: #fff;
        margin: 10px 0;
    }

    .cookies_part_confirmed .cookie_txt {
        text-align: right;
    }

@media(max-width:991px) {
    .cookies_part_confirmed .cookie_txt {
        text-align: center;
    }

    .cookies_part .btnset, .cookies_part_confirmed .btnset {
        margin-bottom: 10px !important;
    }
}

@media(max-width:991px) {
    .cookies_part .btnset, .cookies_part_confirmed .btnset {
        display: table;
        margin: 0 auto;
    }
}

@media(min-width:991px) and (max-width:1199px) {
    .cookies_part .btnset {
        margin-top: 18px;
    }

    .cookies_part_confirmed .btnset {
        margin-top: 8px;
    }
}

.cookies_part .btn-beats-cookies, .cookies_part_confirmed .btn-beats-cookies {
    margin: 5px 5px 0 5px;
    -moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
    -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
    box-shadow: inset 0px 1px 0px 0px #ffffff;
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
    background: -moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf');
    background-color: #ededed;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    font-weight: bold;
    color: #000;
    text-shadow: 1px 1px 0px #ffffff;
}

/*.fixed .beats-menu {
        margin-top: 40px;
    }

    .fixed .logo {
        margin-top: 0;
    }

   */

.fixedbread .breadcram-loc {
    margin-top: 20px;
}

    .breadcram-loc .lets-go {
        font-size: 26px;
        line-height: 46px;
        font-weight: normal;
        text-align: center;
        color: #fff;
        /*margin-bottom: 4rem;*/
        padding-top: 4rem;
    }

    .breadcram-loc .email-signup {
        margin-top: 5em;
        width: 92%;
    }

    .breadcram-loc .input-search, .breadcram-loc .search-btn, .search-btn, .input-search {
        height: 46px;
    }

    .breadcram-loc .search-btn, .search-btn {
        width: 92px;
        font-size: 14px;
        color: #fff;
        background: #34b9be;
        border: 0;
    }

ul.nav li.current {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 2px;
}

/* ==== heading ==== */
.heading, .sub-heading {
    text-align: center;
    color: #fff;
    font-size: 18px;
}

.heading {
    margin-bottom: 20px;
    font-size: 45px;
}

.navbar-toggle {
    cursor: pointer;
}

/* =======================================
1. Header
======================================== */
header .logo {
    float: left;
  /*  margin: 40px 0 0;*/
}

.navbar .nav > li > a {
    float: none;
    color: #fff;
    line-height: 1em;
    text-decoration: none;
    text-shadow: none;
    z-index: 100;
    outline: 0;
    margin: 0 10px;
    /*font-family: "KarlaRegular";*/
    color: #fff;
    font-size: 20px;
    padding: 10px;
}

    .navbar .nav > li > a:hover {
        text-decoration: none;
        color: #34b9be;
        background-color: transparent;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }

    .navbar .nav > li > a:focus {
        color: #fff;
    }

.selected {
    color: #34b9be !important;
}

.navbar .nav > .current {
    color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.navigation .nav > li {
    position: relative;
    display: table;
    float: left;
}

@media(max-width:767px) {
   

   

    .breadcram-loc .lets-go, .breadcram-loc .email-signup {
        text-align: center;
        width: 100%;
    }

    section#services {
        padding-top: 420px !important;
    }

    .navbar .nav > li > a {
        font-size: 16px;
    }

    .toollist-ul {
        margin-top: 50px;
    }

    .callOut {
        transform: rotate(90deg) !important;
        -webkit-transform: rotate(90deg) !important;
    }

        .callOut .txt {
            top: 100px !important;
            left: 30px !important;
            transform: rotate(270deg) !important;
            -webkit-transform: rotate(270deg) !important;
        }

    section#more-features {
        padding: 100px 0;
    }
}

@media(min-width:768px) and (max-width:992px) {
    .beats-logo {
        font-size: 60px !important;
    }

        .beats-logo img {
            width: 160px !important;
        }

    .logo {
        margin-top: 0px !important;
    }

  
}

@media(max-width:992px) {
    .navbar .nav > li > a {
        margin: 0;
        font-size: 16px;
    }

  
    footer .social {
        float: left !important;
        padding: 0;
    }

        footer .social li:first-child {
            margin-left: 0;
        }
}

@media(min-width:993px) and (max-width:1200px) {
    .navbar .nav > li > a {
        margin: 0;
    }
}

@media(min-width:1200px) {
    .callOut .txt {
        left: 24px !important;
    }
}

.navbar {
    margin-bottom: 0;
}

/* =======================================
 Section: ABOUT US 
======================================== */

section#aboutus {
    padding: 60px 0 80px 0;
}

.read-more {
    color: #34b9bd;
}

.aboutus {
    background-color: #fff;
}

    .aboutus .headtitle {
        font-family: "WorkSansRegular";
        font-size: 40px;
        font-weight: normal;
        text-align: center;
        color: #015068;
        margin-bottom: 40px;
    }

    .aboutus .subtext {
        text-align: center;
        font-family: "WorkSansRegular";
        font-size: 18px;
        line-height: 40px;
        color: #7e7e7e;
    }
/* =======================================
 Section: OVERVIEW
======================================== */
section#overview {
    padding: 50px 0 80px 0;
}

.overview {
    background-color: #34b9bd;
}

    .overview .headtitle, .features .headtitle {
        font-family: "WorkSansRegular";
        font-size: 40px;
        font-weight: normal;
        text-align: center;
        color: #015068;
        margin-bottom: 40px;
    }

    .overview .headtitle {
        color: #fff;
    }

    .overview .subtext {
        text-align: left;
        font-family: "WorkSansRegular";
        font-size: 18px;
        line-height: 30px;
        color: #fff;
        letter-spacing: 1px;
    }

    .overview .moveTop {
        margin-top: -90px;
    }

@media(max-width:767px) {
    .moveTop {
        margin-top: 0 !important;
        margin: 0 auto;
    }
}

.overview .logotext {
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
}

/* =======================================
 Section: FEATURES
======================================== */
section#features {
    padding: 60px 0 0 0;
}

.features .subheader {
    font-family: "WorkSansSemiBold";
    font-size: 28px;
    color: #30c0c4;
    text-align: center;
    margin-bottom: 30px;
}

.features .subtext {
    padding: 0;
    margin: 0;
    text-align: center;
    font-family: "WorkSansSemiBold";
    font-size: 18px;
    line-height: 30px;
    color: #263238;
}

.sales:before {
    font-size: 3em;
    font-family: 'Beats' !important;
    content: "\e935";
}

.legal:before {
    font-size: 3em;
    font-family: 'Beats' !important;
    content: "\e939";
}

.marketing:before {
    font-size: 3em;
    font-family: 'Beats' !important;
    content: "\e936";
}

.appdevelopement:before {
    font-size: 3em;
    font-family: 'Beats' !important;
    content: "\e93a";
}

.facilities:before {
    font-size: 3em;
    font-family: 'Beats' !important;
    content: "\e93b";
}

.reports:before {
    font-size: 3em;
    font-family: 'Beats' !important;
    content: "\e983";
}
/* =======================================
2. Section: Intro
======================================== */
.toolFont {
    font-size: 25em;
    color: #34b9be;
}

.callOut {
    display: table;
    margin: 0 auto;
    position: relative;
}

    .callOut .txt {
        position: absolute;
        top: 100px;
        left: 24px;
        width: 280px;
        font-size: 40px;
        color: #fff;
        text-align: center;
        line-height: 50px;
        transition: all 0.5s ease-in-out;
    }

.toollist-ul {
    list-style: none;
    padding: 0;
}

    .toollist-ul .tool-icon {
        font-size: 40px;
        color: #32a2a6;
        width: 60px;
        float: left;
    }

    .toollist-ul li {
        margin-bottom: 6%;
    }

        .toollist-ul li:last-child {
            margin-bottom: 0;
        }

        .toollist-ul li h6 {
            font-size: 15px;
            display: table;
            margin-bottom: 0;
        }

    .toollist-ul .hL_txt {
        font-weight: bold;
        font-size: 22px;
    }

    .toollist-ul .learn-more {
        color: #34b9be;
        margin-left: 60px;
        font-weight: bold;
    }

section#more-features {
    padding-bottom: 50px;
}

.img-holder {
    display: table;
    margin: 0 auto;
}

    .img-holder img {
        width: 200px;
        height: 200px;
        border-radius: 100px;
    }

section#join {
    background: #00b1c3;
    padding: 150px 0 150px;
}

.marginbottom {
    margin-bottom: 150px;
}

.beats_txt6_head {
    color: #fff;
    font-size: 45px;
    text-align: center;
}

.tooltip1 {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

    .tooltip1 .tooltiptext {
        width: 120px;
        background-color: #46abae;
        color: #fff;
        text-align: center;
        border-radius: 2px;
        padding: 7px 14px;
        z-index: 1;
    }

        .tooltip1 .tooltiptext::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 100%;
            margin-top: -6px;
            border-width: 6px;
            border-style: solid;
            border-color: transparent #46abae transparent transparent;
        }

/* ================= services ============================ */
section#tellme {
    background-image: url(../images/bg1.png);
    background-position: left bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    margin: 0;
    padding: 50px 0 50px;
}

.margt50 {
    margin-top: 50px;
}

.beats-txt1-head {
    color: #34babd;
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0;
}

.beats-txt1-subtxt {
    color: #fff;
    font-size: 15px;
    margin: 20px 0;
}

.beats-txt2-head {
    color: #34babd;
    font-size: 18px;
    margin: 20px 0;
}

.beats-txt2-subtxt {
    color: #fff;
    margin: 20px 0;
    font-size: 15px;
    margin: 20px 0;
}

.beats_txt3_head {
    font-size: 45px;
    text-align: center;
    color: #34babd;
    margin-bottom: 60px;
    line-height: 50px;
}

.beats-txt4-head {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.beats-txt4-txt {
    text-align: center;
    font-size: 16px;
}

.beats-txt4-learn {
    text-align: center;
    font-size: 16px;
    color: #2c9da1;
    font-weight: bold;
}
/* ============== contact ==================== */

/* Footer */

footer {
    float: left;
    width: 100%;
    background: #015068;
    color: #ffffff;
    margin: 0;
    padding: 34px 0 13px 0;
}

.beats-black {
    font-size: 95px;
}

footer .verybottom {
    /*	padding:0 0 10px 0;*/
}

.bgBlue {
    background: #0b2832;
}

footer .bottommenu {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 20px;
}

    footer .bottommenu li, footer .follow {
        font-size: 15px;
        margin: 10px 0;
    }

        footer .bottommenu li a {
            font-size: 14px;
            color: #ffffff;
            text-decoration: none;
            opacity: .4;
        }

            footer .bottommenu li a:hover {
                opacity: 1;
            }

footer .social {
    list-style: none;
    padding: 0;
}

    footer .social li {
        float: left;
        width: 35px;
        height: 35px;
        margin: 10px 5px;
        background: #fff;
        border-radius: 20px;
        vertical-align: middle;
    }

        footer .social li a {
            text-decoration: none;
            color: #0e2933;
            text-align: center;
            display: table;
            margin: 5px auto;
        }

@media(max-width:767px) {
    #topnav {
        padding: 0;
    }

    footer .social li a {
        margin-top: 3px;
    }
}

footer .social.index li a {
    color: #145069;
}

footer .social li:last-child {
    margin-right: 0;
}

footer .social .instagram:before {
    font-family: "Beats";
    content: "\e90d";
    font-size: 22px;
}

.bottomspace {
    /*	margin-bottom:28px;*/
}

.verybottom .condition {
    display: table;
    margin: -4px auto;
}

    .verybottom .condition a {
        color: #fff;
        margin: 0 10px;
        font-size: 14px;
        font-weight: normal;
    }

    .verybottom .condition .separator {
        color: #fff;
        font-weight: normal;
        font-size: 14px;
    }

.verybottom .copyrt {
    color: #ddd;
    font-size: 10px;
    text-align: center;
    margin-top: -4px;
}

@media(min-width:768px) {
    .verybottom .web-portal {
        float: right;
        margin-top: -20px;
    }
}

@media(max-width:768px) {
    .navbar-toggle {
        top: 35px !important;
    }

    .web-portal {
        float: none !important;
    }

    footer {
        padding: 5px 0 0 0;
    }

        footer .verybottom {
            padding: 0;
        }

    .condition, .verybottom .copyrt {
        margin: 10px auto !important;
    }

    .pmc-ul {
        margin-top: 40px;
    }

    .top-right-img img {
        display: block !important;
        max-width: 100%;
        height: auto;
    }

    .bottomspace {
        margin-bottom: 0;
    }
}
/* ==== media screen queries ==== */

@media (min-width: 768px) and (max-width: 979px) {
    .navbar-inner {
        width: 100%;
    }

    #topnav .navbar-inner .container .logo {
        padding-left: 20px;
        padding-right: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .default {
        position: fixed;
        background: #2a2a2a;
        top: 0;
        left: 0;
        width: 100%;
    }

    .verybottom .web-portal {
        float: none !important;
        margin: 0 auto;
        display: table;
    }
}

@media (max-width: 991px) {
    .beats_txt6_head {
        font-size: 43px !important;
    }

    section#tellme {
        background: #123a44;
    }
}

@media (max-width: 374px) {
    .beats-logo img {
        width: 200px !important;
    }

    .beats-logo {
        font-size: 90px;
    }
}

@media (max-width: 414px) {
    .toolFont {
        font-size: 21em;
    }

    .callOut .txt {
        top: 72px !important;
        left: 6px !important;
        font-size: 2.5em;
    }
}

@media (min-width: 397px) and (max-width: 410px) {
    .tooltip1 {
        margin-top: 35px !important;
        right: 5%;
    }
}

@media (max-width: 410px) {
    .tooltip1 {
        position: absolute;
        float: right;
        right: 60px;
        display: inline-block;
        margin-left: 10px;
        margin-top: 35px;
    }

        .tooltip1 .tooltiptext::after {
            content: "";
            top: -40%;
            right: 48%;
            margin-top: -7px;
            border-width: 6px;
            border-style: solid;
            border-color: transparent #46abae transparent transparent;
            transform: rotate(85deg);
            -webkit-transform: rotate(85deg);
            -moz-transform: rotate(85deg);
            -ms-transform: rotate(85deg);
        }
}

.triangle {
    background: #fbfbfb;
    border: 1px solid #2fcfd4;
    border-width: 1px 1px 0 0;
    transform: rotate(-45deg);
    border-width: 1px 1px 0 0;
    transform: rotate(-45deg);
    position: absolute;
    top: 140px;
    left: 100px;
    width: 20px;
    height: 20px;
    display: none;
    /*visibility:visible !important;*/
}

@media (max-width: 1024px) {
    .top-right-img img {
        display: block !important;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width:1366px) {
    .verybottom .condition a {
        font-size: 12px;
    }

    .verybottom .copyrt {
        font-size: 12px;
    }
}
@media (max-width: 1350px) {
 
}
@media all and (-ms-high-contrast:none) {
    .navbar .nav > li > a {
        padding: 8px 4px 10px 4px;
    }
}

@media (max-width: 1023px) {
    #termsmodal .modal-body, #privacymodal .modal-body {
        margin: 20px !important;
        padding: 0px !important;
    }

    .beats_logo_pop {
        font-size: 75px;
        color: #fff;
        margin-left: 15px !important;
    }

    #termsmodal .close, #privacymodal .close {
        margin-top: 22px;
    }

    #termsmodal .modal-dialog, #privacymodal .modal-dialog {
        width: 95% !important;
    }

    .breadcram-loc .lets-go {
        font-size: 1.5em;
        line-height: 36px;
    }

    .breadcram-loc .email-signup {
        margin-top: 3em;
    }
}

@media (max-width: 767px) {
    .beats_txt6_head {
        font-size: 35px !important;
    }

    .navbar-inner {
        width: 100%;
    }

        .navbar-inner .container {
            width: 100%;
            padding-left: 20px;
            padding-right: 20px;
        }

    .default {
        position: fixed;
        background: #2a2a2a;
        width: 100%;
    }

    .fixed {
        position: fixed;
        background: #0a2832;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: 0 0 40px #222;
        -webkit-box-shadow: 0 0 40px #222;
        -moz-box-shadow: 0 0 40px #222;
    }

    header .logo {
        /*float: none;*/
        margin: 10px auto;
    }

    .top-right-img {
        display: table;
        margin: 0 auto;
        margin-top: 50px;
    }

    .solgan-window, .task-box {
        display: table;
        margin: 0 auto;
        width: 100%;
    }

    .task-box {
        width: 80%;
    }

    .caption {
        text-align: center !important;
        font-size: 20px !important;
        width: 75% !important;
        margin-bottom: 20px !important;
    }

    .slider_pane .caption img {
        width: 50px;
    }

    .anim {
        margin-bottom: 50px;
    }

    .slider_pane {
        padding: 50px 0 50px !important;
    }

    .followme {
        text-align: left;
        float: none;
        display: table;
    }

        .followme.index {
            margin: 0 auto;
        }

    footer .social li {
        width: 30px;
        height: 30px;
    }

    .doublecot {
        position: relative;
    }
}

#slider1 {
    background: url("../images/slider/slider1.png") no-repeat;
    background-size: 100% 100%;
    text-align: center;
    padding: 200px 0 200px;
}

#slider2 {
    background: url("../images/slider/slider2.png") no-repeat;
    background-size: 100% 100%;
    text-align: center;
    padding: 200px 0 200px;
}

#slider3 {
    background: url("../images/slider/slider3.png") no-repeat;
    background-size: 100% 100%;
    text-align: center;
    padding: 200px 0 200px;
}

#slider4 {
    background: url("../images/slider/slider4.png") no-repeat;
    background-size: 100% 100%;
    text-align: center;
    padding: 200px 0 200px;
}

.triangle-down {
    margin-top: -1px;
    margin-left: 25px;
    padding-bottom: 10px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}

.tri1 {
    border-top: 30px solid #2c9ea1;
}

.tri2 {
    border-top: 30px solid #2c61a1;
}

.tri3 {
    border-top: 30px solid #a1302c;
}

.tri4 {
    border-top: 30px solid #82a12c;
}

.caption {
    font-size: 50px;
    color: #fff;
    display: table;
    margin: 0 auto;
    width: 70%;
    text-align: center;
}

    .caption img {
        width: 80px;
    }

.doublecot {
    position: absolute;
}

.who-says {
    font-size: 20px;
    color: #fff;
    margin: 30px 0;
}

    .who-says img {
        margin: 0 10px;
        margin-top: -4px;
    }

.says-company {
    font-size: 50px;
    vertical-align: middle;
}

.user-commends {
    display: table;
    margin: 0 auto;
    padding: 0 0 50px;
}

    .user-commends .img-holder-usr {
        display: table;
        margin: 10px auto;
        float: left;
    }

        .user-commends .img-holder-usr img {
            width: 80px;
            height: 80px;
            border-radius: 100px;
        }

    .user-commends .user-details {
        float: left;
        margin-left: 15px;
        margin-top: 15px;
    }

    .user-commends .name {
        font-size: 17px;
        font-weight: bold;
        margin-bottom: 0;
        margin-top: 10px;
        color: #4d4d4f;
    }

    .user-commends .beatsLogo {
        position: relative;
        color: #4d4d4f;
    }

/***************** PRICING FILE ********************/
section#pricing {
    padding: 80px 0 30px 0;
}

section#support {
    background: #fff;
}

.plan-box {
    margin: 20px 0;
    width: 100%;
    border: 1px solid #ddd;
    height: 700px;
    box-shadow: 0px 0px 5px #ddd;
}

.selectedbox {
    margin-top: 0;
    height: 740px;
    box-shadow: 0px 0px 25px #adadad;
}

    .selectedbox .head, .selectedbox .headtxt {
        color: #20787b !important;
    }

    .selectedbox .type {
        margin-top: 50px;
        color: #20787b !important;
    }

#pricing .plan-head {
    font-size: 30px;
    font-weight: normal;
    text-align: center;
    margin-top: 30px;
}

.plan-details {
    margin: 30px 0;
}

.tab-content {
    margin-bottom: 10px;
}

.plan-box .head, .plan-box .headtxt {
    text-align: center;
    color: #37a2a5;
    font-size: 60px;
    font-weight: bold;
    padding: 10px 0;
}

.plan-box .headtxt {
    font-size: 32px;
}

.plan-box .type {
    text-align: center;
    color: #37a2a5;
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.plan-box .features {
    margin-top: 40px;
    font-size: 15px;
    margin-left: 20px;
    font-weight: bold;
}

.plan-amount {
    display: table;
    margin: 30px auto;
    position: relative;
}

.plan-box .amt {
    text-align: center;
    color: #37a2a5;
    font-size: 60px;
    font-weight: bold;
    padding: 10px 0;
    display: table;
    float: left;
}

.paddl20 {
    padding-left: 20px;
}

.paddr20 {
    padding-right: 20px !important;
}

.selectedbox .amt, .selectedbox .per-usr, .selectedbox .per-valid {
    color: #20787b !important;
}

.plan-box .deciaml {
    font-size: 30px;
}

.plan-box .per-usr {
    position: relative;
    top: 13px;
    left: 5px;
    font-size: 12px;
    color: #37a2a5;
}

.plan-box .per-valid {
    position: absolute;
    top: 27px;
    font-size: 12px;
    color: #37a2a5;
}

.monthwise.per-valid {
    right: -16px;
}

.yearwise.per-valid {
    right: -3px;
}

.plan-box .benefits {
    list-style: none;
    padding-left: 20px;
}

    .plan-box .benefits li {
        padding-bottom: 5px;
        margin: 20px 0;
        font-size: 15px;
    }

        .plan-box .benefits li:before {
            font-family: "Beats";
            content: '\e916';
            margin-right: 10px;
            color: #37a2a5;
        }

.plan-box .btnholder {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.plan-box .btn-buy {
    display: table;
    margin: 20px 0 50px 0;
    margin-left: auto;
    margin-right: auto;
    border: 0;
    width: 150px;
    padding: 10px 0;
    text-transform: uppercase;
}

.plan-box .btn-normal {
    background: #fff;
    color: #37a2a5;
    border: 1px solid #37a2a5;
}

.plan-box .btn-selected {
    background: #37a2a5;
    color: #fff;
}

.month, .year {
    font-size: 20px;
    font-weight: normal;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 22px;
    vertical-align: middle;
    margin: 0 10px;
}

.hLight {
    color: #37a2a5;
}

.readmore {
    color: #30c0c4;
}

/* Hide default HTML checkbox */
.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 4px;
        top: 2px;
        background-color: #2e898c;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #fff;
    border: 1px solid #ddd;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.copyright {
    text-align: center;
    font-size: 12px;
    margin: 50px 0;
   /* opacity: 0.4;*/
}

/***************** END OF PRICING FILE ********************/

#custom_carousel {
    margin: 50px 0px;
    margin-bottom: 20px;
}

    #custom_carousel .item {
        color: #000;
        padding: 20px 0;
        padding-top: 0;
    }

    #custom_carousel .controls {
        overflow-y: hidden !important;
        padding: 0;
        margin: 0;
        white-space: nowrap;
        text-align: center;
        position: relative;
    }

        #custom_carousel .controls li {
            display: table-cell;
            width: 1%;
            max-width: 90px;
            height: 150px;
            border-bottom: 1px solid #2fcfd4;
        }

            #custom_carousel .controls li.active a, #custom_carousel .controls li a:hover, #custom_carousel .controls li.active a small {
                color: #2fcfd4 !important;
                background: transparent !important;
            }

            #custom_carousel .controls li.active .triangle {
                display: block;
                visibility: visible !important;
            }

        #custom_carousel .controls a small {
            overflow: hidden;
            display: block;
            font-family: "WorkSansSemiBold";
            font-size: 18px;
            margin-top: 20px;
            color: #263238;
        }

        #custom_carousel .controls li a {
            color: #000 !important;
        }

            #custom_carousel .controls li a:focus {
                color: #000;
                background: transparent !important;
            }

@media(min-width:768px) {
    .img-holders {
        max-height: 630px;
        -webkit-transition: height 2s;
        -moz-transition: height 2s;
        -ms-transition: height 2s;
        -o-transition: height 2s;
        transition: height 2s;
    }

    .pmc-ul {
        margin-left: 20px;
    }
}

@media(min-width:768px) and (max-width:1024px) {
    .plan-box .head {
        font-size: 45px;
    }

    .plan-box .amt {
        font-size: 45px;
    }

    .plan-box {
        height: 760px;
    }

    .selectedbox {
        height: 800px;
    }
}

@media(max-width:768px) {
    #custom_carousel .controls li {
        max-width: 185px !important;
        height: 100px;
    }

    .navbar .nav > .current.registerHM {
        width: 87px;
    }

    .no-padd {
        padding: 0 !important;
    }

    .container-fluid {
        padding: 0 15px;
    }

    .triangle {
        visibility: hidden !important;
        display: none !important;
    }

    .overview .headtitle, .features .headtitle, #intergration .subheader, #contact .subheader, .aboutus .headtitle {
        font-size: 38px !important;
        margin-bottom: 30px;
    }

    #adminsec .subheader {
        font-size: 38px !important;
    }

    section#overview, section#aboutus, section#contact {
        padding: 30px 0 30px 0 !important;
    }

    section#workflowbuilder {
        padding: 0 !important;
    }

    section#features {
        padding: 30px 0 0 0 !important;
    }

    section#intergration {
        padding: 30px 0 30px 0 !important;
    }

    .features .subheader {
        font-size: 24px;
    }

    .overview .subtext, .features .subtext, .aboutus .subtext, #timetracking .subtext, #intergration .subtext, #custom_carousel .controls a small {
        font-size: 16px !important;
    }

    #pmc .subheader, #timetracking .subheader {
        font-size: 24px !important;
        margin: 30px 0 30px 0 !important;
    }

    .pmc-ul li h6 {
        font-size: 15px !important;
    }

    section#adminsec {
        padding: 30px 0 30px 0 !important;
    }

    #adminsec .subheader {
        margin-bottom: 50px !important;
    }

    #adminsec .blockspace {
        margin-bottom: 40px !important;
    }

    #contact .subheader {
        margin-bottom: 20px;
    }

    .features .subheader {
        margin-bottom: 30px;
    }

    .contact-txtbox {
        font-size: 14px !important;
    }

    .addFix {
        margin-bottom: 20px !important;
    }

    .overview .moveTop {
        padding: 25px;
    }

    #custom_carousel .controls li a:focus {
        color: #000 !important;
        background: transparent !important;
    }

    #custom_carousel .controls li.active a:focus {
        color: #2fcfd4 !important;
    }
}

@media(min-width:767px) {
    .overview .moveTop {
        padding: 0px;
    }

    .overview .moveTop {
        margin-top: -70px;
    }
}

.carousel-inner {
    border: 1px solid #2fcfd4;
    border-top: 0;
    background: #fbfbfb;
}

.img-holders {
    background: #fbfbfb;
    -webkit-transition: height 2s;
    -moz-transition: height 2s;
    -ms-transition: height 2s;
    -o-transition: height 2s;
    transition: height 2s;
}

    .img-holders .img-rel {
        display: table;
        /*margin: 20px auto;*/
        width: 100%;
    }

.pmc-ul {
    list-style: none;
    padding: 0;
}

    .pmc-ul .tool-icon {
        font-size: 22px;
        color: #32a2a6;
        width: 35px;
        float: left;
    }

    .pmc-ul li {
        clear: both;
        padding: 15px 0;
    }

        .pmc-ul li:first-child {
            padding-top: 0px;
        }

        .pmc-ul li h6 {
            font-size: 18px;
            display: table;
            margin-top: 0;
            margin-bottom: 0;
        }

.bgwhite {
    background: #fff;
}

#pmc .subheader, #timetracking .subheader {
    color: #30c0c4;
    text-align: center;
    margin: 70px 0 40px 0;
    font-family: "WorkSansSemiBold";
    font-size: 28px;
}

section#timetracking {
    padding: 0 0 50px 0;
}

#timetracking .subtext {
    padding: 0;
    margin: 0;
    text-align: center;
    font-family: "WorkSansSemiBold";
    font-size: 18px;
    line-height: 30px;
}

.addFix {
    height: 1px;
    margin-bottom: 40px;
}

ul.timetracking-ul {
    list-style: none;
    padding: 0;
}

    ul.timetracking-ul .tool-icon {
        background: #43aeb2;
        border-radius: 30px;
        padding: 8px;
        font-size: 22px;
        color: #fff;
        float: left;
        margin-right: 20px;
    }

    ul.timetracking-ul h6 {
        font-family: "WorkSansSemiBold";
        font-size: 16px;
        padding-top: 6px;
    }

    ul.timetracking-ul p {
        font-family: "WorkSansRegular";
        font-size: 14px;
        margin-left: 4em;
    }

    ul.timetracking-ul ul {
        list-style: none;
        margin-left: 40px;
        padding-left: 20px;
    }

        ul.timetracking-ul ul li {
            display: table;
        }

    ul.timetracking-ul .inline {
        display: table;
        margin-left: 0;
    }

    ul.timetracking-ul ul li:before {
        font-family: "Beats";
        content: "\e90b";
        color: #b9b9b9;
        font-size: 6px;
        margin-right: 10px;
        float: left;
    }

.bg-gray {
    background: #f7f7f7;
}

.section#intergration {
    padding: 50px 0 50px 0;
}

#intergration .subheader {
    font-family: "WorkSansRegular";
    font-size: 40px;
    color: #015068;
    text-align: center;
    margin-bottom: 55px;
}

#intergration .subtext {
    text-align: center;
    font-family: "WorkSansSemiBold";
    font-size: 18px;
    margin-bottom: 40px;
    color: #263238;
}

#intergration img {
    margin: 0 auto;
}

section#adminsec {
    padding: 50px 0 100px 0;
}

.bggray {
    background: #f1f2f3;
}

.bgcontact {
    background: #34b9bd;
}

#adminsec .subheader {
    color: #015068;
    text-align: center;
    font-family: "WorkSansRegular";
    font-size: 40px;
    margin-bottom: 60px;
}

#adminsec .block1 {
    display: table;
    margin: 0 auto;
}

    #adminsec .block1 img {
        display: table;
        margin: 0 auto;
    }

#adminsec .block-head {
    margin: 1em 0;
    text-align: center;
    font-family: "WorkSansSemiBold";
    font-size: 25px;
    color: #30c0c4;
}

#adminsec .block-txt {
    font-family: "WorkSansRegular";
    font-size: 16px;
    text-align: center;
    color: #263238;
    line-height: 30px;
}

section#contact {
    padding: 72px 0 80px 0;
}

#contact .subheader {
    color: #fff;
    text-align: center;
    font-family: "WorkSansRegular";
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 30px;
}

.contact-txtbox {
    padding-left: 0;
    font-family: "WorkSansRegular";
    font-size: 16px;
    padding-bottom: 20px;
    margin: 20px 0;
    color: #fff;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 1px solid #fff;
}

.btn-send {
    background: #0b4357;
    border: 0;
    padding: 12px 40px;
    font-size: 18px;
    margin-top: 2em;
}

.contact-txtbox:focus {
    box-shadow: none;
    border-color: #fff;
    outline: none;
}

.contact::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff !important;
    opacity: 1; /* Firefox */
}

.contact:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff !important;
}

.contact::-ms-input-placeholder { /* Microsoft Edge */
    color: #fff !important;
}

.book-title {
    color: #34b9bd;
}

.book-txt {
    margin: 1em 0;
    font-size: 1.2em;
    color: #8c8c8c;
}

.btn-beats {
    margin-top: 1em;
    font-size: 1em;
    background: #34babd;
    padding: 8px 40px;
    border: 0;
    border-radius: 0;
    box-shadow: 0px 2px 6px #6f6c6c;
}

.modal-content {
    border: 0;
  /*  border-radius: 0;*/
}

.modal {
    background: rgba(255,255,255,.5);
}

.modal-body {
    padding: 25px 15px;
}

#termsmodal .modal-body, #privacymodal .modal-body {
    margin: 22px 72px 72px 96px;
    padding: 0px;
}

.sub-cat-id {
    float: left;
    margin-right: 10px;
}

.sub-cat-txt {
    display: table;
}

#cookiesModal .modal-body {
    margin: 22px 40px 72px 40px;
    padding: 0px;
}

@media(min-width:768px) {
    .modal-dialog {
        width: 450px;
    }

    #register_success .modal-dialog {
        width: 500px;
    }

    #termsmodal .modal-dialog, 
    #privacymodal .modal-dialog, 
    #cookiesModal .modal-dialog {
        width: 816px;
        
    }
}

#termsmodal .modal-dialog, #privacymodal .modal-dialog, #cookiesModal .modal-dialog {
    margin: 5% auto;
}


.modal-dialog {
    margin: 15% auto;
}

/************** CREATE ACCOUNT **************/
section#create_acc {
    padding: 110px 0 100px 0;
}

.createacc {
    color: #59cfd5;
    font-family: "WorkSansSemiBold";
    font-size: 20pt;
    margin-top: 30px;
    padding-bottom: 80px;
    text-align: center;
    line-height: 30px;
}

.txtclas {
    border: 0px;
    background: transparent;
    border-bottom: 1px solid #cacaca;
    width: 100%;
    outline: none;
    padding: 0 0 4px 0px;
    font-size: 14px;
    margin-bottom: 30px;
}

.cbutton a {
    font-family: 'WorkSansRegular';
    background: #1277D9;
    padding: 10px 0px;
    text-align: center;
    display: inline-block;
    color: #fff;
    font-size: 18px;
    border-radius: 3px;
    width: 100%;
    margin: 40px 0 40px 0;
}

    .cbutton a:hover, .cbutton a:focus {
        text-decoration: none;
    }
/************** END OF CREATE ACCOUNT **************/

/************** business ACCOUNT **************/
section#business {
    padding: 130px 0 100px 0;
}

.txtsmall {
    font-size: 14px;
    color: #c5c5c5;
}

.slcttxtclas {
    border: 0px;
    background: transparent;
    border-bottom: 1px solid #cacaca;
    width: 100%;
    outline: none;
    padding: 0 0 4px 0px;
    font-size: 14px;
    margin-bottom: 10px;
    color: #7d7d7d;
}


.contactus-btn a {
    font-family: 'WorkSansRegular';
    background: #1277D9;
    padding: 10px 80px;
    text-align: center;
    display: table;
    color: #fff;
    font-size: 18px;
    width: 80%;
    border-radius: 3px;
    margin: 40px auto;
}

    .contactus-btn a:hover, .contactus-btn a:focus {
        text-decoration: none;
    }

.paddt10 {
    padding-top: 10px;
}

.text-area {
    resize: none;
}
/************** End of business ACCOUNT **************/

.iconFile {
    font-family: "Beats";
    font-size: 10em;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.thancls {
    color: #034254;
    font-size: 14pt;
    font-weight: bold;
}

.txtregsuccess {
    text-align: justify;
}

.margt30 {
    margin-top: 30px !important;
}

.txt-center {
    text-align: center;
}

.txtThank {
    font-size: 13pt;
    line-height: 16px;
    font-weight: bold;
    margin: 20px 0;
    color: #777777;
}

.no-width a {
    width: auto;
}

.billing_header {
    color: #034255;
    font-family: "WorkSansRegular";
    font-size: 20pt;
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: center;
    line-height: 30px;
}

.seletedplan {
    padding: 8px;
    height: 40px;
    background: #ececec;
}

    .seletedplan p {
        font-family: "WorkSansSemiBold";
        color: #1277D9;
        font-size: 10pt;
        text-align: center;
    }

.txtclass1 {
    border: 0px;
    background: transparent;
    border-bottom: 1px solid #cacaca;
    width: 90%;
    outline: none;
    padding: 0 0 4px 0px;
    font-size: 14px;
    margin-bottom: 30px;
}

@media(max-width:768px) {
    .txtclass1 {
        width: 100%;
    }
}

.purchase_btn a {
    font-family: 'WorkSansRegular';
    background: #1277D9;
    padding: 10px 80px;
    text-align: center;
    display: table;
    color: #fff;
    font-size: 18px;
    width: 30%;
    border-radius: 3px;
    margin: 40px auto;
}

    .purchase_btn a:hover {
        text-decoration: none;
    }

.cvvnumber {
    position: absolute;
    right: 60px;
    cursor: pointer;
}
/*.tooltip{
	width:400px;
	text-align:left;
}*/
.tooltip-right, .tooltip-arrow {
    border-right-color: transparent;
    border-top-color: #ddd !important;
}

.tooltip-inner {
    color: #000;
    background: #ddd;
}

section#payment {
    padding: 130px 0 20px 0;
}

.txtThank1 {
    font-size: 13pt;
    line-height: 25px;
    margin: 20px 0;
    color: #777777;
}

.pay-success-email {
    color: #1277D9;
}

.invoice-details {
    margin-top: 50px;
    margin-bottom: 150px;
}

    .invoice-details h4 {
        font-size: 1.5rem;
        color: #777777;
    }

    .invoice-details .head, .invoice-details .bld {
        font-weight: bold;
    }

    .invoice-details .bld {
        color: #424242;
    }

    .invoice-details > tbody > tr:last-child > td {
        border-bottom: 1px solid #ddd;
    }

.done-btn a {
    font-family: 'WorkSansRegular';
    background: #1277D9;
    padding: 10px 40px;
    text-align: center;
    display: table;
    color: #fff;
    font-size: 18px;
    width: auto;
    border-radius: 3px;
    margin: 40px auto;
}

    .done-btn a:hover {
        text-decoration: none;
    }

section#workflowbuilder {
    padding: 40px 0 0 0;
    background: #f7f7f7;
}

#fade-quote-carousel.carousel {
    padding-bottom: 60px;
}

    #fade-quote-carousel.carousel .carousel-indicators {
        bottom: 10px;
    }

        #fade-quote-carousel.carousel .carousel-indicators > li {
            background-color: #ddd;
            border: none;
        }

            #fade-quote-carousel.carousel .carousel-indicators > li.active {
                background-color: #34b9bd;
            }

#fade-quote-carousel .profile-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 100px;
}

.workflow-slider {
    margin-top: 40px;
}

@media(max-width:767px) {
    .curl_workflow-builder {
        width: 100% !important;
    }
}

.curl_workflow-builder {
    width: 86%;
    margin: 0 auto;
    box-shadow: 0px 0px 15px #ddd;
    border: 16px solid #ddd;
    border-radius: 25px;
    background: #fff;
}

.img-shadow {
    margin: 0 auto;
}

.carousel-indicators {
    z-index: 1;
}

@media(min-width:1600px) {
    .overview .headtitle, .features .headtitle, #intergration .subheader, #adminsec .subheader, .aboutus .headtitle, #contact .subheader {
        font-size: 40pt;
    }

    .overview .subtext {
        font-size: 18pt;
        line-height: 30pt;
    }

    .features .subheader, #pmc .subheader, #timetracking .subheader {
        font-size: 28pt;
    }

    #custom_carousel .controls .nav > li > a {
        padding: 10px 0 !important;
    }

    .features .subtext, #custom_carousel .controls a small, #timetracking .subtext, #intergration .subtext, .aboutus .subtext {
        font-size: 18pt;
    }

    .pmc-ul li h6 {
        font-size: 17pt;
    }

    ul.timetracking-ul h6, .contact-txtbox {
        font-size: 16pt;
    }

    ul.timetracking-ul p {
        font-size: 14pt;
    }

    ul.timetracking-ul ul {
        padding-left: 40px;
    }

    #adminsec .block-head {
        font-size: 28pt;
    }

    #adminsec .block-txt {
        font-size: 16pt;
    }

    .verybottom .condition a, .verybottom .copyrt {
        font-size: 13pt;
    }
}

@media (min-width: 1600px) {
    .container {
        width: 1500px;
    }

    .overview .moveTop {
        margin-top: -110px;
    }

    .moveTop {
        width: 372px;
    }
}

.mb-0 {
    margin-bottom: 0px !important;
}

.preload {
    position: absolute;
    display: none;
}

@media (min-width: 1024px) {
    #ani1, #ani4 {
        max-height: 360px;
        overflow: hidden;
    }

    #ani2, #ani3, #ani5 {
        /*max-height: 90px;*/
        /*overflow: hidden;*/
    }
}
/*-------END UI ----*/
#myModal {
    /*background: url(../BLP/images/beats_graphics.jpg) fixed;*/
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: 100% 100%;
    /*background-color: #06a4ce;*/
}

.visible-login {
    visibility: visible !important;
}

.hidden-login {
    visibility: hidden;
}
.paddt35 {
    padding-top: 35px;
}
.topbanercss {
    width: 100%;
    padding: 0px;
}
.overview_title {
    font-family: "WorkSansRegular";
    font-size: 40px;
    font-weight: normal;
    margin-bottom: 20px;
    text-align: left;
    color: #fff;
}
/*-----------Login Left Panel Image------------*/


    .login-rightimg img {
        max-width: 100%;
        border: 0;
        vertical-align: middle;
    }

.login_leftpanel_img {
    /*object-fit: cover;
    -o-object-fit: cover;
    position: relative;
    top: 50%;
    height: 100%;
    width: 100%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);*/
}

#myModal_signup {
    z-index: 999999999;
}

.helplink {
    color: #1277D9 !important;
}

    .helplink:hover {
        color: #1BC3A3;
        text-decoration: none !important;
    }
/*-------------------For Alert Message ------------*/
#jsAlert1_background {
    position: fixed !important;
    /*background: rgba(255,255,255,.3) !important;*/
    background: #666666 !important;
    opacity: 0.5 !important;
}

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
    .login_leftpanel_img {
        height: 100%;
    }
    /* your css rules for ipad portrait */
}

@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape) {
    .login_leftpanel_img {
        height: 100%;
    }
    /* your css rules for ipad landscape */
}
@media all and (device-width: 1366px) and (device-height: 1024px) and (orientation:landscape) {
    .login_leftpanel_img {
        height: 100%;
    }
    /* your css rules for ipad landscape */
}
@media all and (device-width: 1024px) and (device-height: 1366px) and (orientation:portrait) {
    .login_leftpanel_img {
        height: 100%;
    }
    /* your css rules for ipad landscape */
}

@media all and (min-width:600px) {
    #jsAlert1_popup {
        width: 30% !important;
    }
}

.jqiiIC {
    vertical-align: middle !important;
    padding: 0 10px;
    float: left;
    visibility: hidden;
}

#jsAlert1_popup {
    min-height: 80px;
    height: auto !important;
    top: 10% !important;
}

#jsAlert1_popupBody {
    background-color: transparent !important;
    width: 100% !important;
    padding-top: 0px !important;
    bottom: 0;
    position: relative !important;
    padding: 8px !important;
}

#lblTitle {
    font-size: 12pt !important;
}

#ltMessage, #divDisplay {
    font-size: 11pt !important;
}

#jsAlert1_popupTitle {
    display: none;
}

#jsAlert1_shadow {
    display: none !important;
}

@media all and (min-width:0px) and (max-width:599px) {
    #jsAlert1_popup {
        width: 50% !important;
    }

    div.jqi {
        width: 30% !important;
        margin-left: -30% !important;
    }

    .Jimg, .jqiiIC {
        display: none;
    }
}

.jqi_state, .PromptPopup {
    background-color: white;
}

.jqi_state, .PromptPopup {
    border: none !important;
}

div.jqi .jqibuttons {
    border: none !important;
}

div.jqi {
    border-radius: 0px;
    background: #fff;
    border-color: rgba(217, 217, 217, 1) !important;
    min-height: 100px;
}


#jsAlert1_okButton {
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
}

.MWbtn_OK {
    background: url(../Images/BeatsClose.png) no-repeat;
    background-size: 100%;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-top: 10px;
    outline: none;
    background-size: 20px 20px !important;
}

#jsAlert1_popupFooter {
    top: -5px !important;
    right: -2px !important;
    border-radius: 100%;
    width: auto !important;
    left: auto !important;
    background-color: transparent !important;
    padding: 0px !important;
}

#divDisplay td:first-child {
    vertical-align: middle;
    padding: 0 8px;
}

#divDisplay {
    height: 100%;
    list-style-image: none;
    color: rgba(216, 216, 216, 1);
    padding: 0px !important;
}

    #divDisplay > table {
        height: 100%;
        /*display: inline;*/
    }
/* width */
#termsmodal .modal-content::-webkit-scrollbar, #privacymodal .modal-content::-webkit-scrollbar {
    width: 10px;
}

/* Track */
#termsmodal .modal-content::-webkit-scrollbar-track, #privacymodal .modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
#termsmodal .modal-content::-webkit-scrollbar-thumb, #privacymodal .modal-content::-webkit-scrollbar-thumb {
    background: #888;
}

    /* Handle on hover */
    #termsmodal .modal-content::-webkit-scrollbar-thumb:hover, #privacymodal .modal-content::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

#termsmodal .close, #privacymodal .close {
    font-size: 32px;
    opacity: 1;
    color: #182832;
    margin-top: 12px;
    cursor:pointer;
}

#cookiesModal .close {
    font-size: 32px;
    opacity: 1;
    color: #182832;
    margin-top: 12px;
    margin-right: 15px;
}

#cookiesModal .modal-header {
    background: #034255;
    padding: 15px;
}

#cookiesModal .beats_logo_pop {
    font-size: 75px;
    color: #fff;
    margin-left: 15px !important;
    padding: 10px;
}

#cookiesModal ul li {
    list-style: none;
}

.boldtxt {
    font-weight: bold;
}
/*.privacy_txt{padding-bottom:10px;}*/
.txtunderline {
    text-decoration: underline;
}

.font12 {
    font-size: 10px;
    text-decoration: none;
}

#termsmodal ul, #privacymodal ul, #cookiesModal ul {
    margin-bottom: 0px;
}

.bgyellow {
    background: yellow;
}

.ulclass ul {
    padding: 0px;
}

    .ulclass ul li {
        list-style: disc;
        padding: 5px 5px 5px 5px;
        margin-left: 20px;
    }

#termsmodal, #privacymodal, #cookiesModal {
    line-height: 24px;
    letter-spacing: .5px;
}

.clrred {
    color: red;
}

@media print {
    .clrred {
        color: red !important;
    }

    .bgyellow {
        background: yellow !important;
    }

    .modal-header {
        background: #034255 !important;
    }

    .poplogo a {
        display: inherit !important;
        text-align: center !important;
    }

        .poplogo a .icon_BeatsLogoColor {
            font-size: 35px !important;
            display: inherit;
            text-align: center !important;
        }

        .poplogo a:hover {
            text-decoration: none;
        }

    #termsmodal, #privacymodal, #cookiesModal {
        line-height: 24px !important;
        letter-spacing: .5px !important;
    }

    .paddforprint {
        margin: 22px 20px 72px 96px !important;
    }

    .beats_logo_pop {
        font-size: 55px;
        color: #fff;
        margin-left: 0px !important;
    }
}

#termsmodal .modal-header, #privacymodal .modal-header {
    min-height: 16.43px;
    padding: 0px 20px 0px 15px;
    border-bottom: 1px solid #e5e5e5;
}

.paddb10 {
    padding-bottom: 10px;
}

.paddt20 {
    padding-top: 20px;
}

.headfont {
    font-size: 18px;
}

.poplogo {
    display: inherit;
    text-align: center;
}

    .poplogo .icon_BeatsLogoColor {
        font-size: 35px;
        display: inherit;
        text-align: center;
    }

    .poplogo a:hover {
        text-decoration: none;
    }

.poplogo {
    width: 150px;
    height: 80px;
}

.beats_logo_pop {
    font-size: 75px;
    color: #fff;
   /* margin-left: 65px;*/
    padding: 10px;
}

.beats_logo_fixed {
    font-size: 80px;
    color: #fff;
}

.beats_logo_pop a:hover, .beats_logo_pop a:focus {
    text-decoration: none;
}

.paddb20 {
    padding-bottom: 20px;
}

.condition a:focus, .condition a:active {
    outline: none !important;
}

button {
    outline: none;
}

.clearDefault::-ms-clear, .clearDefault::-ms-reveal {
    display: none;
}

/*---alert popup---*/
.closebtn {
    margin-left: 15px;
    font-weight: bold;
    float: right;
    font-size: 15px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.alrt {
    -webkit-animation: swive 0.35s;
    animation: swive 0.35s;
    -moz-animation: swive 0.35s;
}

.alert {
    padding: 20px;
    background-color: #fff;
    position: relative;
    top: 100px;
    z-index: 999999999;
    border: 1px dotted;
    left: 20%;
    right: 20%;
    width: 60%;
    color: #455660;
    border-radius: 0 !important;
}

.CustomAlert {
    width: 100%;
    height: 100%;
    z-index: 9999999;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,.5);
}

.clscntr {
    background: rgba(82, 206, 211, 1);
    display: inline-block;
    padding: 0px 9px;
    font-weight: normal;
    color: white;
    text-align: center;
    border-radius: 11px;
}

.closebtnall {
    position: relative;
    right: 20%;
    left: 20%;
    background: none;
    color: #fff;
    width: 60%;
    display: block;
    text-align: right;
    padding: 0 0 10px 0;
    top: 100px;
    cursor: pointer;
}

.paddl0 {
    padding-left: 0px !important;
}
/*---end ----*/




.login_info_label {
    color: #3f5364;
    font-weight: normal;
    opacity: .79;
}

.chage_title {
    color: #3f5364;
    font-weight: normal;
    opacity: .79;
    text-align: center;
    font-size: 13pt;
    padding: 15px 15px 12px 0px;
}

.txtbrdr:focus {
    box-shadow: none;
    outline: none;
}

.readtransp:read-only {
    background-color: transparent !important;
    cursor: text !important;
}

.signup:read-only {
    cursor: text !important;
}

.clearboth {
    clear: both;
}

.fnt13 {
    font-size: 13px;
}

.paddcls {
    padding: 0 0 0 15px;
    line-height: 20px;
}

.btn-beats-cookies {
    width: auto !important;
}

.form-control[readonly] {
    background: transparent !important;
    cursor: pointer !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: transparent 5000s ease-in-out 0s;
}

@-webkit-keyframes autofill {
    to {
        color: #666;
        background: transparent;
    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

input[type="password"] {
    font: small-caption !important;
    font-size: 14px !important;
    text-security: disc;
    -webkit-text-security: disc;
    -moz-text-security: disc;
    /* font-family: sans-serif !important;*/
    letter-spacing: 1px;
}
/*----login slide css---*/

.login {
    margin: 0;
    width: 415px;
    max-width: 90%;
    background: #FFFFFF;
    box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.28);
    position: fixed;
    right: 0;
    height: 100%;
    top: 0;
    bottom: 0;
    overflow: auto;
    -webkit-animation: slide 0.2s forwards;
    -webkit-animation-delay: 0.2s;
    animation: slide 0.2s forwards;
    animation-delay: 0.2s;
    right: -400px;
    overflow-x: hidden;
}

@-webkit-keyframes slide {
    100% {
        right: 0;
    }
}

@keyframes slide {
    100% {
        right: 0;
    }
}

.hide {
    display: none;
}

.show {
    display: block;
}

/*.lang {
    position: absolute;
    top: 5px;
    right: 5px;
}*/

    .lang .dropdown-menu {
        width: 75px;
        min-width: 75px;
    }

        .lang .dropdown-menu > li > a {
            padding: 3px 10px;
        }

.sticky-container {
    padding: 0px;
    margin: 0px;
    position: relative;
    width: auto;
    z-index: 999;
    float: right;
}

    .sticky-container > .dropdown-toggle {
        background: transparent;
        border: 0;
        color: #fff;
        outline: none;
    }

    .sticky-container .btn-default:hover, .sticky-container .btn-default:focus, .sticky-container .btn-default:active, .sticky-container .btn-default.active, .sticky-container .open > .dropdown-toggle.btn-default {
        color: #fff;
        background-color: #34b9be;
    }

.fnt12 {
    font-size: 12px;
}

.martop10 {
    margin: 10px 0;
}

.mart10 {
    margin-top: 10px;
}

.resend_link {
    border-top: 1px solid #ccc;
    padding-top: 10px;
    display: inline-block;
    width: 100%;
    text-align: right;
    color: #212529;
    margin-top: 30px;
}

    .resend_link:hover {
        text-decoration: none;
        cursor: pointer;
    }

.forgot-info {
    padding: 50% 30px 0 30px;
    position: relative;
    left: 0;
    right: 0;
}

.info-txt {
    font-size: 18px;
    color: #3B4B5B;
    font-weight: 600;
    margin-top: 30px;
}

.email-clr a {
    color: #4ec3c7;
    font-size: 14px;
    text-decoration: none;
}

.margt10percent {
    margin-top: 10%;
}

.info_txt_forgotuser {
    font-size: 14px;
    color: #3B4B5B;
    font-weight: 600;
    margin-top: 30px;
}



.clr-beats {
    color: #1277D9 !important;
}

a.myBtn:hover {
    background: #0b4a87 !important;
}

a.myBtn:focus {
    background: #235a5d !important;
}

.myBtn {
    font: 14px 'WorkSansRegular';
    color: #fff;
    float: right;
    padding: 8px 28px;
    border-radius: 3px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
    /*background: #1f768e;*/
    background-color: #1277D9;
    border: 0px;
}

    .myBtn:hover {
        /*background: #1277D9;*/
        background-color: #0B4A87;
    }

.mtop0 h4 {
    margin-top: 0px;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    color: #3B4B5B;
}

.back-btn {
    float: left;
    font-size: 20px;
    margin: 10px 15px;
    position: relative;
    z-index: 9999;
}

.beatslogo {
    /*font-size: 6em;*/
}

.beatslogo_reg_sucss {
    font-size: 8em;
}

.eye span {
    cursor: pointer;
}


/*--------top value =70 difference in eye icon position  ------*/
.eyesymbol1 {
    position: absolute;
    top: 205px;
    right: 45px;
    font-size: 18px;
    z-index: 2;
    color: #b5bdc0;
}

.eyesymbol2 {
    position: absolute;
    top: 275px;
    right: 45px;
    font-size: 18px;
    z-index: 2;
    color: #b5bdc0;
}

.eyesymbol3 {
    position: absolute;
    top: 345px;
    right: 45px;
    font-size: 18px;
    z-index: 2;
    color: #b5bdc0;
}

.icon_eyeView.showeye {
    color: #000;
}

.icon_eyeView.hideeye {
    color: #182832;
}
/*.eyesymbol:hover{
	color:#023f5b;
}*/
.eyesymbol span,.eyesymbol_t span {
    cursor: pointer;
position:absolute;right:5px;
}

.hiddenme {
    display: none;
}

.home-btn {
    position: absolute;
    top: 10px;
    left: 20px;
    cursor: pointer;
    font-size: 22px !important;
    color: #1277D9;
    opacity: 0.5;
    z-index: 333;
}

    .home-btn:hover {
        color: #023f5b;
        opacity: 1;
    }

.l-footer {
    position: absolute;
    left: 0;
    right: 0;
}

.login-info i.fa.fa-eye {
    position: relative;
    top: 40px;
    background: #EBEBEB;
    overflow: hidden;
    z-index: 1;
    background: #EBEBEB;
}


.wrapper-lg {
    padding: 40px 30px 0 30px;
    position: relative;
    left: 0;
    right: 0;
}

    .wrapper-lg .form-control {
        border-radius: 0;
        background-color: transparent;
        /*border-bottom: 1px solid #039be6;*/
        border-top: 0;
        border-left: 0;
        border-right: 0;
    }

    .wrapper-lg .form-group {
        margin-bottom: 20px;
    }

    .wrapper-lg .input-group {
        margin-bottom: 20px;
        width: 100%;
    }

.login-info {
    padding: 15px;
    font-family: 'WorkSansRegular';
    margin-top: 5px;
}

.mtop0 {
    margin-top: 0px;
}

.login-info ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #AAAAAA;
}

.login-info ::-moz-placeholder { /* Firefox 19+ */
    color: #AAAAAA;
}

.login-info :-ms-input-placeholder { /* IE 10+ */
    color: #AAAAAA;
}

.login-info :-moz-placeholder { /* Firefox 18- */
    color: #AAAAAA;
}

.input-group-addon {
    border-radius: 10px;
    background-color: #e5e5e5;
}

.form-control-feedback {
    left: 0;
    /* top: 15%; */
    height: 50px;
    /* width: 50px; */
    vertical-align: middle;
    padding: 8px 0;
}

.has-feedback select, .has-feedback input {
   /* background-color: #e5e5e5;*/
    width: 100%;
    /* 	line-height: 50px; */
    padding: 10px 15px;
    box-shadow: none;
   /* border: 1px solid #d0d0d0;*/
    border-radius: 10px;
}


    .login-info .has-feedback input:focus {
        box-shadow: none;
    }

.bg {
    background: #2a6e77 url(../img/beats_graphics.jpg);
    background-repeat: no-repeat;
    background-size: auto;
    -webkit-background-size: auto;
    -moz-background-size: auto;
    -o-background-size: auto;
    background-size: 100% 100%;
}

@media screen and (max-width:1023px) {
    .bg {
        background-position: -260px 0;
    }
}

@media screen and (min-width:1023px) and (max-width:1200px) {
    .bg {
        background-position: -150px 0;
    }
}

@media (max-width: 767px) {
    .login {
        max-width: 100%;
        width: 100%;
    }
}

a.backbtn:hover, a.backbtn:focus {
    text-decoration: none !important;
}
/*----End Login slide css----*/

.padding16 {
    padding: 16px 16px;
}

.padd20 {
    padding: 20px 20px;
}

.borderradius5 {
    border-radius: 5px;
}
.beats-logo {
    font-size: 70px;
}
@media (min-width: 768px) {
    .navbar-nav.navbar-right:last-child {
        margin-right: 2px;
    }
    .navbar-toggle {display:none;
    }
}
.exela_copyright {
    font-size: 12px;
    bottom: 0;
    z-index: 9;
    text-align: center;
    padding: 10px;
    color:#40505b;
    right:25px;
}
.pos_fixed {
    position: fixed;
}
#LangTab .dropdown-menu, #LangTab1 .dropdown-menu {
    min-width: 75px !important;
}
    #LangTab1 .dropdown-menu > li > a {
        padding: 3px 8px !important;
    }
.padd10 {padding:10px 10px;
}
.custom-padd {padding:0px 15px 15px 15px !important;
}
.btn_notifpop {
    background-color: #1277d9 !important;
   
}
    .btn_notifpop:hover {
        background-color: #0b4a87 !important;
        border-color: #285e8e !important;
    }
@media screen and (max-width: 839px) {
    .login {
        width: 100% !important;
        max-width: 100% !important;
        position: absolute;
        right: 0px !important;
    }
}
/*- box-shadow: 0px 0px 2px #B40220;--Success-#218666 Err-#B40220 Warning-#F4B836   Info-#0156AD  */


* {
    padding: 0;
    margin: 0;
}
body {
    font-family: WorkSansMedium !important;
    color: #182832;
    font-size: 14px;
    line-height: normal;
}
.beats-menu {
    flex-direction: row;
   align-items:center;
}
.breadcram-loc {
    margin-top: 73px;
}


footer .social .facebook:before {
    font-family: "Beats";
    content: "\e945";
    font-size: 22px;
}

footer .social .twitter:before {
    font-family: "Beats";
    content: "\e94f";
    font-size: 22px;
}

footer .social .linkedin:before {
    font-family: "Beats";
    content: "\e94c";
    font-size: 22px;
}

#divTimo {
    position: fixed;
    z-index: 999;
    bottom: 50px;
    right: 5px;
    top:75%;
}
#topnav {
    transition: all .5s;
    height: 73px;
}
.login-rightimg {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 90%;
    /*width: calc(100% - 400px);*/
    text-align: center;
    background-size: 100% 100%;
    background-image: url('../BLP/images/erc_loginbg.jpg');
}
.eyesymbol {
    position: absolute;
    top:6px;
    right: 5px;
    font-size: 18px;
    z-index: 3;
    color: #585853;
    cursor: pointer;
}

.form-control {
    font-size:14px;
}
a.alink {
    color: #1277D9;
    text-decoration: none !important;
    font-size: .95em;
    text-align: center;
}

a.alink:hover {
    color: #3f5364;
    text-decoration: underline !important;
}
.useHand {
    cursor: pointer;
}
.alert-login {
    float: left;
    width: 100%;
    color: #b40220;
    font-size: 11px;
    /*position: absolute;*/
    bottom: -17px;
    z-index: 52;
}
.txtbrdr {
    border-radius: 0;
    background-color: transparent;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    width: 100%;
    font-size: 14px;
}
.mobicon {
    right:25px;top:20px;position:absolute;z-index:10;display:none;outline:none !important;box-shadow:none !important;
}
    .mobicon span {
        font-size: 16px;
    }
#termsmodal .modal-dialog,
#privacymodal .modal-dialog,
#cookiesModal .modal-dialog {
    max-width: 700px !important;
}
.btn-default {
    color: #333;
     background-color: #fff; 
     border-color: #ccc; 
}
@media screen and (max-width: 576px) {
    .mob_text .text-start, .mob_text .text-end {
        text-align: center !important;
    }
    
    
}
    @media(max-width:768px) {
        /**---------mobile resolution scroll need to fix----*/
        .login_leftpanel_img {
            display: none;
        }

        .exela_copyright {
            right: 1% !important;
            left: 1%;
        }

        #LogInnerDiv, #innerusr, #innerPass, #tbchngpwd, #innerPass_otp, #innerPass_secure {
          /*  height: 90vh;*/
        }

        #topnav.fixedClr {
        }

        .mobicon {
            display: block;
        }

        .beats-menu {
            flex-direction: column;
            align-items: start;
            position: absolute;
            top: 55px;
            width: 100%;
            text-align: left;
            background: #0a2832;
            border-top: 2px solid #fff;
            left: 0px;
            right: 0px;
        }

            .beats-menu li a {
                padding: 8px 15px !important;
                min-height: 30px;
                float: left !important;
            }

            .beats-menu li.loginHM {
                margin-left: 15px;
            }

                .beats-menu li.loginHM a {
                    padding: 3px 10px !important;
                    min-height: auto;
                }

        .beats-logo {
            padding-left: 10px
        }

        #navbar-collapse-main {
            display: none;
        }

            #navbar-collapse-main.show {
                display: block;
                transition: all 2s;
            }
    }

    .checkbox label, .radio label {
        cursor: pointer;
        /* margin-bottom:0px; */
        position: relative;
        line-height: normal;
    }

        .checkbox label::after {
            display: inline-block;
            position: absolute;
            width: 16px;
            height: 16px;
            left: 0;
            top: 0;
            margin-left: -20px;
            padding-left: 3px;
            padding-top: 1px;
            font-size: 11px;
            color: #FFF;
        }

    .checkbox input[type="checkbox"], .toggleswitch input[type="checkbox"] {
        display: none;
    }

    input[type="checkbox"], input[type="radio"] {
        box-sizing: border-box;
        padding: 0;
    }

    input[type="radio"], input[type="checkbox"] {
        margin: 4px 0 0;
        margin-top: 1px \9;
        line-height: normal;
    }

    input[type="checkbox"], input[type="radio"] {
        box-sizing: border-box;
        padding: 0;
    }

    input[type="radio"], input[type="checkbox"] {
        margin: 4px 0 0;
        margin-top: 1px \9;
        line-height: normal;
    }

    .checkbox input[type="checkbox"]:checked + label::before {
        content: '\eaa9';
        font-family: 'Beats';
        color: #1277d9;
        font-weight: 400;
        position: relative;
        cursor: pointer;
    }

    .checkbox label::before {
        float: left;
        content: '\ea29';
        font-family: 'Beats';
        font-size: 20px;
        position: relative;
        /* right: 10px; */
        color: #585858;
        font-weight: 400;
        padding-right: 10px;
        cursor: pointer;
    }

    .btn {
        font-size: 14px;
        padding: 7px 16px;
        border-radius: 4px;
        font-family: WorkSansMedium;
        min-width: 72px;
        /*text-transform: uppercase;*/
        position: relative;
        overflow: hidden;
        z-index: 0;
    }

    .bluetext_button {
        background: #1277d9;
        border-color: #1277d9;
        color: #ffffff;
    }

        .bluetext_button:hover {
            background: #08345E;
            border-color: #08345E;
            color: #ffffff;
        }

    .contained_button {
        background: #d71996;
        border-color: #d71996;
        color: #ffffff;
    }

        .contained_button:hover {
            background: #d71996;
            border-color: #d71996;
            color: #ffffff;
        }

        .contained_button:active {
            background: #d71996;
            border-color: #d71996;
        }

    @media(max-width:992px) {
        .login {
            width: 100% !important;
        }
    }

    .err_text {
        display: none;
        font-size: 11px;
        padding-left: 12px;
        color: #b40220;
        /* z-index: 999; */
        position: absolute;
    }

    .out_lined.err .err_text, .bottom_lined.err .err_text {
        display: block;
    }

    .out_lined.err .form-control {
        border: 1px solid #b40220 !important;
    }

    .out_lined.focus.err .float-label, .bottom_lined.focus.err .float-label, .out_lined.active.err [data-clear-input], .out_lined.err [data-clear-input]:hover {
        color: #b40220 !important;
    }

    .bottom_lined.err .form-control, .bottom_lined.err .input-group .form-control, .bottom_lined.err .multi-select-button, .bottom_lined.err .multiselect, .bottom_lined.err .multiselect-container .form-control {
        border-bottom: 1px solid #b40220;
    }

    .term_cond {
        font-size: 13px;
        line-height: normal;
    }
    /*---------Google Signin button css----------*/
.google_text-button {background:#fff;color:#1277D9;border:1px solid #1277D9;
}
#googleBtn, #googleBtn1, .g-signin2 {
    border: 1px solid #d71996 !important;
    background: #fff !important;
    display: inline-block;
    width: 100%;
    border-radius: 5px !important;
}

    .abcRioButtonBlue, .abcRioButtonLightBlue {
        color: #4285f4 !important;
        width: 68% !important;
        background: #fff !important;
        font-family: 'WorkSansRegular', sans-serif !important;
        height: 40px !important;
    }

    .abcRioButton {
        box-shadow: none !important;
    }

    .abcRioButtonBlue span, .abcRioButtonLightBlue span {
    font-family: 'WorkSansSemiBold' !important;
    font-size: 13px !important;
    }

    .abcRioButtonIcon {
        padding: 10px !important;
    }

    .abcRioButtonContents {
        line-height: 38px !important;
    }
.abcRioButtonLightBlue {border:none;
}
.abcRioButtonContentWrapper {
    border: 1px solid transparent;
}

.h2_border {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #ccc;
    line-height: 0.1em;
    margin: 15px 0 15px;
    padding-top: 15px;
    font-size: 18px !important;
    font-weight: 500 !important;
}

        .h2_border span {
            background: #fff;
            padding: 0 10px;
            color: #182832;
        }
.float-label.required:after {
    content: "*";
    color: red;
}
.bottom_lined .float-label {padding-left:10px;
}
.title-head {
    color: #182832;
    font-family: WorkSansMedium;
    margin-bottom: 0px;
}
.has-feedback .form-control, .has-feedback select {
    padding-right: 10px;
    padding-left:10px;
}
.form-control:focus {
    box-shadow: none;
}

    /*-------------*/
.focus {
    color: #1277d9 !important;
}
.out_lined {
    margin-bottom: 20px;
}
.float-label {
    margin-bottom: 0px !important;
}
.out_lined.focus .float-label {
    top: -8px;
    background: #ffffff;
    padding: 0px 4px;
    opacity: 1;
    color: #585858;
    z-index: 101;
}
#forgot-password .out_lined .float-label {left:18px;
}
.out_lined .float-label {
    font-size: 11px;
    position: absolute;
    left: 10px;
    top: 27px;
    opacity: 0;
    color: #ffffff;
    transition-delay: 0.1s;
}
.out_lined .form-control.clearable {
    padding-right: 28px;
}
.out_lined .form-control {
    color: #182832;
}
.out_lined .form-control, .out_lined .input-group .form-control {
    background-color: transparent;
    border: 1px solid #dadada;
    border-radius: 4px;
    font-size: 14px;
    padding: 7px 12px;
    color: #182832;
}
.out_lined [data-clear-input] {
    display: none;
    position: absolute;
    top: 3px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #585858;
}
.form-info h4, .login-info h4 {
    margin-top: 0px;
    font-size: 16px;
    line-height: 30px;
    /* color: #182832; */
    font-family: 'WorkSansSemiBold';
}
#login_loginCtrl .eyesymbol {
    position: relative;
    top: -26px;
    right: 10px;
    font-size: 18px;
    z-index: 999;
    color: #585858;
}
.alertmessage {
    max-width: 300px;
}
    .alertmessage input.btn {
        font-size: 11px;
        line-height: normal;
        padding: 4px 12px;
        font-family: 'WorkSansMedium';
    }
.paid {
    color: #218666;
}
.fs13 {font-size:13px;
}
.fs18 {font-size:18px;
}
.fs48 {
    font-size: 48px;
}
.danger {
    color: #B40220 !important;
}
.out_lined [data-info-input] {
    display: block;
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #585858;
    background: transparent;
}
/*----------info icon---popup---*/
.info_tip p {
    margin-bottom:0.5rem;
}
.info_tip ul {
    padding-left: 1rem;
    background: transparent;
}
.info_tip ul li {
    list-style: disc;
}
.icon_info:hover div.info_tip {
    display: block !important;
    transform-origin: 100% 0%;
    -webkit-animation: fadeIn 0.3s ease;
    animation: fadeIn 0.3s ease;
}

    /* The tooltip */
.icon_info div.info_tip {
    display: none;
    font-family: sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-align: left;
    background-color: #cdecff;
    padding: 8px;
    width: 235px;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translate(-88%, 5%);
    border-radius: 3px;
    /* 	border: 1px solid #E0E0E0; */
    box-shadow: 0 0px 20px 0 rgba(0,0,0,0.1);
    color: #182832;
    font-size: 12px;
    line-height: 16px;
    z-index: 999;
}

   

       

        /* The pointer of the tooltip */
    .icon_info div.info_tip:before {
        position: absolute;
        content: '';
        width: 0;
        height: 0;
        border: 10px solid transparent;
        border-bottom-color: #FFFFFF;
        top: -9px;
       /* left: 50%;*/
       right:0px;
        transform: translate(-50%, -50%);
    }

        /* Prevents the tooltip from being hidden */
    .icon_info div.info_tip:after {
        width: 10px;
        height: 40px;
        content: '';
        position: absolute;
        top: -40px;
        left: 0;
    }

/* CSS animation */
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100%;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100%;
    }
}

/*----------end info popup------*/

/*--------Landing Screen UI-----*/
@media (min-width: 768px) {
    .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important;
    }
}
ul.beats-menu {
    background: transparent;
}
.navbar-collapse {
    padding-right: 15px;
    padding-left: 15px;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgb(255 255 255 / 10%);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 10%);
}
@media (min-width: 768px) {
    .navbar-header {
        float: left;
    }
    .navbar-right {
        float: right !important;
    }
    .navbar-nav {
    margin:0;

    }
        .navbar-nav.navbar-right:last-child {
            /* margin-right: -15px; */
        }
}
nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.beats-menu {
    margin-top: 20px;
}
@media (max-width: 1350px) {
    .beats-menu {
        margin-top: 30px;
    }
}
/*---------------*/
/********** SourceSansPro FONT FAMILY STARTS HERE ********************/
@font-face {
	font-family: 'WorkSansRegular';
	src:  url('../fonts/WorkSans/WorkSans-Regular.eot?uk8u2m');
	src:  url('../fonts/WorkSans/WorkSans-Regular.eot?uk8u2m#iefix') format('embedded-opentype'),
		  url('../fonts/WorkSans/WorkSans-Regular.woff') format('woff'),
	      url('../fonts/WorkSans/WorkSans-Regular.ttf') format('truetype'),
		  url('../fonts/WorkSans/WorkSans-Regular.svg#svgFontName') format('svg');	
	
}

@font-face {
	font-family: 'WorkSansMedium';
	src:  url('../fonts/WorkSans/WorkSans-Medium.eot?uk8u2m');
	src:  url('../fonts/WorkSans/WorkSans-Medium.eot?uk8u2m#iefix') format('embedded-opentype'),
		  url('../fonts/WorkSans/WorkSans-Medium.woff') format('woff'),
	      url('../fonts/WorkSans/WorkSans-Medium.ttf') format('truetype'),
		  url('../fonts/WorkSans/WorkSans-Medium.svg#svgFontName') format('svg');	
	
}
@font-face {
	font-family: 'WorkSansSemiBold';
	src:  url('../fonts/WorkSans/WorkSans-SemiBold.eot?uk8u2m');
	src:  url('../fonts/WorkSans/WorkSans-SemiBold.eot?uk8u2m#iefix') format('embedded-opentype'),
		  url('../fonts/WorkSans/WorkSans-SemiBold.woff') format('woff'),
	      url('../fonts/WorkSans/WorkSans-SemiBold.ttf') format('truetype'),
		  url('../fonts/WorkSans/WorkSans-SemiBold.svg#svgFontName') format('svg');	
	
}
@font-face {
	font-family: 'WorkSansBold';
	src:  url('../fonts/WorkSans/WorkSans-Bold.eot?uk8u2m');
	src:  url('../fonts/WorkSans/WorkSans-Bold.eot?uk8u2m#iefix') format('embedded-opentype'),
		  url('../fonts/WorkSans/WorkSans-Bold.woff') format('woff'),
	      url('../fonts/WorkSans/WorkSans-Bold.ttf') format('truetype'),
		  url('../fonts/WorkSans/WorkSans-Bold.svg#svgFontName') format('svg');	
	
}
@font-face {
  font-family: 'Beats';
  src:  url('../fonts/Beats/Beats.eot?6i8oz0');
  src:  url('../fonts/Beats/Beats.eot?6i8oz0#iefix') format('embedded-opentype'),
    url('../fonts/Beats/Beats.ttf?6i8oz0') format('truetype'),
    url('../fonts/Beats/Beats.woff?6i8oz0') format('woff'),
    url('../fonts/Beats/Beats.svg?6i8oz0#Beats') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],[class^="icon_"], [class*=" icon-"], [class*=" icon_"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'Beats' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.WorkSansRegular {
	font-family: 'WorkSansRegular' !important;
}
.WorkSansMedium{
font-family: 'WorkSansMedium' !important;
}
.WorkSansSemiBold{
font-family: 'WorkSansSemiBold' !important;
}
.WorkSansBold{
font-family: 'WorkSansBold' !important;
}

.icon_beats-logo-black:before {
	content: "\ead3";
}

.icon_beats-symbol-black .path1:before {
	content: "\ead4";
	color: rgb(24, 25, 27);
}

.icon_beats-symbol-black .path2:before {
	content: "\ead5";
	margin-left: -1em;
	color: rgb(24, 25, 27);
}

.icon_beats-symbol-black .path3:before {
	content: "\ead6";
	margin-left: -1em;
	color: rgb(24, 25, 27);
}

.icon_beats-symbol-black .path4:before {
	content: "\ead7";
	margin-left: -1em;
	color: rgb(24, 25, 27);
}

.icon_beats-symbol-black .path5:before {
	content: "\ead8";
	margin-left: -1em;
	color: rgb(24, 25, 27);
}

.icon_beats-symbol-black .path6:before {
	content: "\ead9";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_beats-symbol-black .path7:before {
	content: "\eada";
	margin-left: -1em;
	color: rgb(24, 25, 27);
}

.icon_beats-logo-default .path1:before {
	content: "\eadb";
	color: rgb(23, 24, 26);
}

.icon_beats-logo-default .path2:before {
	content: "\eadc";
	margin-left: -4.8974609375em;
	color: rgb(23, 24, 26);
}

.icon_beats-logo-default .path3:before {
	content: "\eadd";
	margin-left: -4.8974609375em;
	color: rgb(23, 24, 26);
}

.icon_beats-logo-default .path4:before {
	content: "\eade";
	margin-left: -4.8974609375em;
	color: rgb(23, 24, 26);
}

.icon_beats-logo-default .path5:before {
	content: "\eadf";
	margin-left: -4.8974609375em;
	color: rgb(85, 193, 239);
}

.icon_beats-logo-default .path6:before {
	content: "\eae0";
	margin-left: -4.8974609375em;
	color: rgb(23, 24, 26);
}

.icon_beats-logo-default .path7:before {
	content: "\eae1";
	margin-left: -4.8974609375em;
	color: rgb(82, 195, 240);
}

.icon_beats-logo-default .path8:before {
	content: "\eae2";
	margin-left: -4.8974609375em;
	color: rgb(23, 25, 26);
}

.icon_beats-logo-default .path9:before {
	content: "\eae3";
	margin-left: -4.8974609375em;
	color: rgb(23, 25, 26);
}

.icon_beats-logo-default .path10:before {
	content: "\eae4";
	margin-left: -4.8974609375em;
	color: rgb(23, 25, 26);
}

.icon_beats-logo-default .path11:before {
	content: "\eae5";
	margin-left: -4.8974609375em;
	color: rgb(23, 25, 26);
}

.icon_beats-logo-default .path12:before {
	content: "\eae6";
	margin-left: -4.8974609375em;
	color: rgb(23, 25, 26);
}

.icon_beats-logo-default .path13:before {
	content: "\eae7";
	margin-left: -4.8974609375em;
	color: rgb(82, 195, 240);
}

.icon_beats-logo-default .path14:before {
	content: "\eae8";
	margin-left: -4.8974609375em;
	color: rgb(23, 25, 26);
}

.icon_beats-logo-default .path15:before {
	content: "\eae9";
	margin-left: -4.8974609375em;
	color: rgb(23, 25, 26);
}

.icon_beats-logo-default .path16:before {
	content: "\eaea";
	margin-left: -4.8974609375em;
	color: rgb(23, 25, 26);
}

.icon_beats-logo-default .path17:before {
	content: "\eaeb";
	margin-left: -4.8974609375em;
	color: rgb(82, 195, 240);
}

.icon_beats-logo-default .path18:before {
	content: "\eaec";
	margin-left: -4.8974609375em;
	color: rgb(82, 195, 240);
}

.icon_beats-symbol-default .path1:before {
	content: "\eaed";
	color: rgb(23, 25, 26);
}

.icon_beats-symbol-default .path2:before {
	content: "\eaee";
	margin-left: -1em;
	color: rgb(82, 195, 240);
}

.icon_beats-symbol-default .path3:before {
	content: "\eaef";
	margin-left: -1em;
	color: rgb(23, 25, 26);
}

.icon_beats-symbol-default .path4:before {
	content: "\eaf0";
	margin-left: -1em;
	color: rgb(23, 25, 26);
}

.icon_beats-symbol-default .path5:before {
	content: "\eaf1";
	margin-left: -1em;
	color: rgb(23, 25, 26);
}

.icon_beats-symbol-default .path6:before {
	content: "\eaf2";
	margin-left: -1em;
	color: rgb(82, 195, 240);
}

.icon_beats-symbol-default .path7:before {
	content: "\eaf3";
	margin-left: -1em;
	color: rgb(82, 195, 240);
}

.icon_beats-logo-reverse .path1:before {
	content: "\eaf4";
	color: rgb(255, 255, 255);
}

.icon_beats-logo-reverse .path2:before {
	content: "\eaf5";
	margin-left: -4.8974609375em;
	color: rgb(255, 255, 255);
}

.icon_beats-logo-reverse .path3:before {
	content: "\eaf6";
	margin-left: -4.8974609375em;
	color: rgb(255, 255, 255);
}

.icon_beats-logo-reverse .path4:before {
	content: "\eaf7";
	margin-left: -4.8974609375em;
	color: rgb(255, 255, 255);
}

.icon_beats-logo-reverse .path5:before {
	content: "\eaf8";
	margin-left: -4.8974609375em;
	color: rgb(85, 193, 239);
}

.icon_beats-logo-reverse .path6:before {
	content: "\eaf9";
	margin-left: -4.8974609375em;
	color: rgb(255, 255, 255);
}

.icon_beats-logo-reverse .path7:before {
	content: "\eafa";
	margin-left: -4.8974609375em;
	color: rgb(82, 195, 240);
}

.icon_beats-logo-reverse .path8:before {
	content: "\eafb";
	margin-left: -4.8974609375em;
	color: rgb(255, 255, 255);
}

.icon_beats-logo-reverse .path9:before {
	content: "\eafc";
	margin-left: -4.8974609375em;
	color: rgb(255, 255, 255);
}

.icon_beats-logo-reverse .path10:before {
	content: "\eafd";
	margin-left: -4.8974609375em;
	color: rgb(255, 255, 255);
}

.icon_beats-logo-reverse .path11:before {
	content: "\eafe";
	margin-left: -4.8974609375em;
	color: rgb(255, 255, 255);
}

.icon_beats-logo-reverse .path12:before {
	content: "\eaff";
	margin-left: -4.8974609375em;
	color: rgb(255, 255, 255);
}

.icon_beats-logo-reverse .path13:before {
	content: "\eb00";
	margin-left: -4.8974609375em;
	color: rgb(82, 195, 240);
}

.icon_beats-logo-reverse .path14:before {
	content: "\eb01";
	margin-left: -4.8974609375em;
	color: rgb(255, 255, 255);
}

.icon_beats-logo-reverse .path15:before {
	content: "\eb02";
	margin-left: -4.8974609375em;
	color: rgb(255, 255, 255);
}

.icon_beats-logo-reverse .path16:before {
	content: "\eb03";
	margin-left: -4.8974609375em;
	color: rgb(255, 255, 255);
}

.icon_beats-logo-reverse .path17:before {
	content: "\eb04";
	margin-left: -4.8974609375em;
	color: rgb(82, 195, 240);
}

.icon_beats-logo-reverse .path18:before {
	content: "\eb05";
	margin-left: -4.8974609375em;
	color: rgb(82, 195, 240);
}

.icon_beats-symbol-reverse .path1:before {
	content: "\eb06";
	color: rgb(255, 255, 255);
}

.icon_beats-symbol-reverse .path2:before {
	content: "\eb07";
	margin-left: -1em;
	color: rgb(82, 195, 240);
}

.icon_beats-symbol-reverse .path3:before {
	content: "\eb08";
	margin-left: -1em;
	color: rgb(255, 255, 255);
}

.icon_beats-symbol-reverse .path4:before {
	content: "\eb09";
	margin-left: -1em;
	color: rgb(255, 255, 255);
}

.icon_beats-symbol-reverse .path5:before {
	content: "\eb0a";
	margin-left: -1em;
	color: rgb(255, 255, 255);
}

.icon_beats-symbol-reverse .path6:before {
	content: "\eb0b";
	margin-left: -1em;
	color: rgb(82, 195, 240);
}

.icon_beats-symbol-reverse .path7:before {
	content: "\eb0c";
	margin-left: -1em;
	color: rgb(82, 195, 240);
}

.icon_beats-logo-white:before {
	content: "\eb0d";
	color: #fff;
}

.icon_beats-symbol-white:before {
	content: "\eb0e";
	color: #fff;
}

.icon_exelaLogo .path1:before {
	content: "\eab6";
	color: rgb(10, 11, 11);
}

.icon_exelaLogo .path2:before {
	content: "\eab7";
	margin-left: -2.37890625em;
	color: rgb(10, 11, 11);
}

.icon_exelaLogo .path3:before {
	content: "\eab8";
	margin-left: -2.37890625em;
	color: rgb(10, 11, 11);
}

.icon_exelaLogo .path4:before {
	content: "\eab9";
	margin-left: -2.37890625em;
	color: rgb(10, 11, 11);
}

.icon_exelaLogo .path5:before {
	content: "\eaba";
	margin-left: -2.37890625em;
	color: rgb(54, 185, 239);
}

.icon_exelaLogo .path6:before {
	content: "\eabb";
	margin-left: -2.37890625em;
	color: rgb(10, 11, 11);
}

.icon_exelaLogo .path7:before {
	content: "\eabc";
	margin-left: -2.37890625em;
	color: rgb(10, 11, 11);
}

.icon_exelaLogo .path8:before {
	content: "\eabd";
	margin-left: -2.37890625em;
	color: rgb(10, 11, 11);
}

.icon_exelaLogo .path9:before {
	content: "\eabe";
	margin-left: -2.37890625em;
	color: rgb(10, 11, 11);
}

.icon_exelaLogo .path10:before {
	content: "\eabf";
	margin-left: -2.37890625em;
	color: rgb(10, 11, 11);
}

.icon_exelaLogo .path11:before {
	content: "\eac0";
	margin-left: -2.37890625em;
	color: rgb(10, 11, 11);
}

.icon_exelaLogo .path12:before {
	content: "\eac1";
	margin-left: -2.37890625em;
	color: rgb(10, 11, 11);
}

.icon_exelaLogo .path13:before {
	content: "\eac2";
	margin-left: -2.37890625em;
	color: rgb(10, 11, 11);
}

.icon_exelaLogo .path14:before {
	content: "\eac3";
	margin-left: -2.37890625em;
	color: rgb(10, 11, 11);
}

.icon_exelaLogo .path15:before {
	content: "\eac4";
	margin-left: -2.37890625em;
	color: rgb(10, 11, 11);
}

.icon_exelaLogo .path16:before {
	content: "\eac5";
	margin-left: -2.37890625em;
	color: rgb(10, 11, 11);
}

.icon_exelaLogo .path17:before {
	content: "\eac6";
	margin-left: -2.37890625em;
	color: rgb(10, 11, 11);
}

.icon_exelaLogo .path18:before {
	content: "\eac7";
	margin-left: -2.37890625em;
	color: rgb(10, 11, 11);
}

.icon_exela_X .path1:before {
	content: "\eac8";
	color: rgb(255, 255, 255);
}

.icon_exela_X .path2:before {
	content: "\eac9";
	margin-left: -1em;
	color: rgb(54, 185, 239);
}

.icon_exela_X .path3:before {
	content: "\eaca";
	margin-left: -1em;
	color: rgb(10, 11, 11);
}

.icon_exela_Help .path1:before {
	content: "\eacb";
	color: rgb(18, 119, 217);
}

.icon_exela_Help .path2:before {
	content: "\eacc";
	margin-left: -2.1171875em;
	color: rgb(255, 255, 255);
}

.icon_exela_Help .path3:before {
	content: "\eacd";
	margin-left: -2.1171875em;
	color: rgb(54, 185, 239);
}

.icon_exela_Help .path4:before {
	content: "\eace";
	margin-left: -2.1171875em;
	color: rgb(10, 11, 11);
}

.icon_MicrosoftOutlook .path1:before {
    content: "\eb20";
    color: rgb(255, 255, 255);
}

.icon_MicrosoftOutlook .path2:before {
    content: "\eb21";
    margin-left: -1.0556640625em;
    color: rgb(255, 255, 255);
}

.icon_MicrosoftOutlook .path3:before {
    content: "\eb22";
    margin-left: -1.0556640625em;
    color: rgb(0, 113, 197);
}

.icon_MicrosoftOutlook .path4:before {
    content: "\eb23";
    margin-left: -1.0556640625em;
    color: rgb(0, 113, 197);
}

.icon_GoogleCalendar .path1:before {
    content: "\eb24";
    color: rgb(255, 255, 255);
}

.icon_GoogleCalendar .path2:before {
    content: "\eb25";
    margin-left: -1.001953125em;
    color: rgb(26, 115, 232);
}

.icon_GoogleCalendar .path3:before {
    content: "\eb26";
    margin-left: -1.001953125em;
    color: rgb(26, 115, 232);
}

.icon_GoogleCalendar .path4:before {
    content: "\eb27";
    margin-left: -1.001953125em;
    color: rgb(234, 67, 53);
}

.icon_GoogleCalendar .path5:before {
    content: "\eb28";
    margin-left: -1.001953125em;
    color: rgb(52, 168, 83);
}

.icon_GoogleCalendar .path6:before {
    content: "\eb29";
    margin-left: -1.001953125em;
    color: rgb(66, 133, 244);
}

.icon_GoogleCalendar .path7:before {
    content: "\eb2a";
    margin-left: -1.001953125em;
    color: rgb(24, 128, 56);
}

.icon_GoogleCalendar .path8:before {
    content: "\eb2b";
    margin-left: -1.001953125em;
    color: rgb(251, 188, 4);
}

.icon_GoogleCalendar .path9:before {
    content: "\eb2c";
    margin-left: -1.001953125em;
    color: rgb(25, 103, 210);
}

.icon_AsanaO:before {
    content: "\eb2d";
    color: #f06a6a;
}

.icon_TrelloO:before {
    content: "\eb2e";
}

.icon_normalView:before {
    content: "\eb0f";
}

.icon_compactView:before {
    content: "\eb10";
}

.icon_warning:before {
	content: "\eacf";
}

.icon_sucess:before {
	content: "\ead0";
}

.icon_error:before {
	content: "\ead1";
}

.icon_info:before {
	content: "\ead2";
}

.icon_textArea:before {
	content: "\eab1";
}

.icon_text:before {
	content: "\eab2";
}

.icon_crown:before {
	content: "\eab3";
}

.icon_timer:before {
	content: "\eab4";
}

.icon_camera:before {
	content: "\eab5";
}

.icon_route:before {
	content: "\ea9c";
}

.icon_settingsList:before {
	content: "\ea9d";
}

.icon_fullscreen:before {
	content: "\ea9e";
}

.icon_close:before {
	content: "\ea9f";
}

.icon_repeat:before {
	content: "\eaa0";
}

.icon_showHideFlow:before {
	content: "\eaa1";
}

.icon_flow:before {
	content: "\eaa2";
}

.icon_directionL:before {
	content: "\eaa3";
}

.icon_chat:before {
	content: "\eaa4";
}

.icon_clip:before {
	content: "\eaa5";
}

.icon_toggleOFF:before {
	content: "\eaa6";
}

.icon_toggleON:before {
	content: "\eaa7";
}

.icon_chkbox_rd:before {
	content: "\eaa8";
}

.icon_chkbox_rd_select:before {
	content: "\eaa9";
}

.icon_table:before {
	content: "\eaaa";
}

.icon_revCol:before {
	content: "\eaab";
}

.icon_bar:before {
	content: "\eaac";
}

.icon_filter:before {
	content: "\eaad";
}

.icon_listView:before {
	content: "\eaae";
}

.icon_dot3Hori:before {
	content: "\eaaf";
}

.icon_dot3Vert:before {
	content: "\eab0";
}

.icon_baseStation:before {
	content: "\ea92";
}

.icon_direction:before {
	content: "\ea93";
}

.icon_eyeLine:before {
	content: "\ea94";
}

.icon_eyeOffLine:before {
	content: "\ea95";
}

.icon_global:before {
	content: "\ea96";
}

.icon_lockPassword:before {
	content: "\ea97";
}

.icon_lockUnlock:before {
	content: "\ea98";
}

.icon_settings3:before {
	content: "\ea99";
}

.icon_translate:before {
	content: "\ea9a";
}

.icon_userVoice:before {
	content: "\ea9b";
}

.icon_resetPwf:before {
	content: "\ea67";
}

.icon_resetPwN:before {
	content: "\ea68";
}

.icon_unLockN:before {
	content: "\ea69";
}

.icon_LockN:before {
	content: "\ea6a";
}

.icon_add-circle-line:before {
	content: "\ea6b";
}

.icon_alert-line:before {
	content: "\ea6c";
}

.icon_archive-drawer-line:before {
	content: "\ea6d";
}

.icon_brush-3-line:before {
	content: "\ea6e";
}

.icon_calendar-2-line:before {
	content: "\ea6f";
}

.icon_checkbox-multiple-line:before {
	content: "\ea70";
}

.icon_check-line:before {
	content: "\ea71";
}

.icon_close-line:before {
	content: "\ea72";
}

.icon_dashboard-line:before {
	content: "\ea73";
}

.icon_delete-bin-line:before {
	content: "\ea74";
}

.icon_download-2-line:before {
	content: "\ea75";
}

.icon_eye-line:before {
	content: "\ea76";
}

.icon_file-copy-line:before {
	content: "\ea77";
}

.icon_file-excel-2-line:before {
	content: "\ea78";
}

.icon_file-excel-line:before {
	content: "\ea79";
}

.icon_file-text-line:before {
	content: "\ea7a";
}

.icon_file-upload-line:before {
	content: "\ea7b";
}

.icon_group-line:before {
	content: "\ea7c";
}

.icon_layout-grid-line:before {
	content: "\ea7d";
}

.icon_list-settings-line:before {
	content: "\ea7e";
}

.icon_mail-line:before {
	content: "\ea7f";
}

.icon_notification-3-line:before {
	content: "\ea80";
}

.icon_pencil-line:before {
	content: "\ea81";
}

.icon_price-tag-3-line:before {
	content: "\ea82";
}

.icon_question-line:before {
	content: "\ea83";
}

.icon_reply-line:before {
	content: "\ea84";
}

.icon_save-line:before {
	content: "\ea85";
}

.icon_send-plane-2-line:before {
	content: "\ea86";
}

.icon_share-line:before {
	content: "\ea87";
}

.icon_shut-down-line:before {
	content: "\ea88";
}

.icon_slideshow-4-line:before {
	content: "\ea89";
}

.icon_star-fill:before {
	content: "\ea8a";
}

.icon_star-line:before {
	content: "\ea8b";
}

.icon_task-line:before {
	content: "\ea8c";
}

.icon_timer-line:before {
	content: "\ea8d";
}

.icon_upload-2-line:before {
	content: "\ea8e";
}

.icon_upload-cloud-fill:before {
	content: "\ea8f";
}

.icon_user-2-line:before {
	content: "\ea90";
}

.icon_user-line:before {
	content: "\ea91";
}

.icon_uniE900:before {
	content: "\e928";
}

.icon_AddNew:before {
	content: "\e929";
}

.icon_BackArrow:before {
	content: "\e92c";
}

.icon_Billable:before {
	content: "\e92d";
}

.icon_calendar:before {
	content: "\e92e";
}

.icon_Close:before {
	content: "\e92f";
}

.icon_Complete2:before {
	content: "\e930";
}

.icon_Complete:before {
	content: "\e931";
}

.icon_Dashboard:before {
	content: "\e932";
}

.icon_Delete2:before {
	content: "\e933";
}

.icon_delete:before {
	content: "\e937";
}

.icon_DropDown:before {
	content: "\e93c";
}

.icon_Edit2:before {
	content: "\e93d";
}

.icon_Edit:before {
	content: "\e941";
}

.icon_Expand2:before {
	content: "\e942";
}

.icon_Expand3:before {
	content: "\e944";
}

.icon_expand:before {
	content: "\e946";
}

.icon_Handle:before {
	content: "\e947";
}

.icon_Milestone:before {
	content: "\e948";
}

.icon_Minimise2:before {
	content: "\e949";
}

.icon_Minimise:before {
	content: "\e94b";
}

.icon_More:before {
	content: "\e94d";
}

.icon_MyTask1:before {
	content: "\e94e";
}

.icon_MyTask2:before {
	content: "\e951";
}

.icon_MyTask3:before {
	content: "\e956";
}

.icon_Profile:before {
	content: "\e95e";
}

.icon_Project3x:before {
	content: "\e95f";
}

.icon_Search:before {
	content: "\e960";
}

.icon_StageSlider:before {
	content: "\e962";
}

.icon_Success:before {
	content: "\e972";
}

.icon_Tick:before {
	content: "\e975";
}

.icon_TimeTracker:before {
	content: "\e976";
}

.icon_Type:before {
	content: "\e977";
}

.icon_upload:before {
	content: "\e97a";
}

.icon_Workflow:before {
	content: "\e97b";
}

.icon_SubTask:before {
	content: "\e97c";
}

.icon_AddNewOutline:before {
	content: "\e97d";
}

.icon_Workflow01:before {
	content: "\e97e";
}

.icon_calendar_01:before {
	content: "\e97f";
}

.icon_reporting:before {
	content: "\e986";
}

.icon_integrations:before {
	content: "\e987";
}

.icon_arrowUpSolid:before {
	content: "\e980";
}

.icon_arrowRightSolid:before {
	content: "\e981";
}

.icon_arrowDownSolid:before {
	content: "\e982";
}

.icon_arrowLeftSolid:before {
	content: "\e983";
}

.icon_sortArrow:before {
	content: "\e984";
}

.icon_ptoggle0:before {
	content: "\e985";
}

.icon_Help:before {
	content: "\e92a";
}

.icon_Subtask:before {
	content: "\e92b";
}

.icon_Task:before {
	content: "\e934";
}

.icon_sales:before {
	content: "\e935";
}

.icon_marketing:before {
	content: "\e936";
}

.icon_legal:before {
	content: "\e939";
}

.icon_projMng:before {
	content: "\e93a";
}

.icon_Anything:before {
	content: "\e93b";
}

.icon_callOut:before {
	content: "\e943";
}

.icon_facebook:before {
	content: "\e945";
}

.icon_linkedin:before {
	content: "\e94c";
}

.icon_twitter:before {
	content: "\e94f";
}

.icon_Tick2:before {
	content: "\e950";
}

.icon_cardView:before {
	content: "\e952";
}

.icon_Darrow_left:before {
	content: "\e953";
}

.icon_Darrow_right:before {
	content: "\e954";
}

.icon_lock:before {
	content: "\e955";
}

.icon_delete2:before {
	content: "\e957";
}

.icon_comment:before {
	content: "\e958";
}

.icon_comment2:before {
	content: "\e959";
}

.icon_view:before {
	content: "\e95b";
}

.icon_Appointment-Scheduling:before {
	content: "\e95d";
}

.icon_appDevelopment .path1:before {
	content: "\e973";
	color: rgb(0, 0, 0);
}

.icon_appDevelopment .path2:before {
	content: "\e974";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_appDevelopment .path3:before {
	content: "\e978";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_appDevelopment .path4:before {
	content: "\e979";
	margin-left: -1em;
	color: rgb(76, 173, 178);
}

.icon_appDevelopment .path5:before {
	content: "\e988";
	margin-left: -1em;
	color: rgb(76, 173, 178);
}

.icon_appDevelopment .path6:before {
	content: "\e989";
	margin-left: -1em;
	color: rgb(76, 173, 178);
}

.icon_approvals:before {
	content: "\e98a";
}

.icon_reporting2:before {
	content: "\e98b";
}

.icon_accessControl:before {
	content: "\e98c";
}

.icon_choosePref:before {
	content: "\e98d";
}

.icon_unLock:before {
	content: "\e98e";
}

.icon_checked:before {
	content: "\e98f";
}

.icon_leftArrow:before {
	content: "\e990";
}

.icon_rightArrow:before {
	content: "\e991";
}

.icon_thankYou .path1:before {
	content: "\e992";
	color: rgb(45, 191, 191);
}

.icon_thankYou .path2:before {
	content: "\e993";
	margin-left: -1em;
	color: rgb(45, 191, 191);
}

.icon_thankYou .path3:before {
	content: "\e994";
	margin-left: -1em;
	color: rgb(45, 191, 191);
}

.icon_thankYou .path4:before {
	content: "\e995";
	margin-left: -1em;
	color: rgb(45, 191, 191);
}

.icon_thankYou .path5:before {
	content: "\e996";
	margin-left: -1em;
	color: rgb(45, 191, 191);
}

.icon_thankYou .path6:before {
	content: "\e997";
	margin-left: -1em;
	color: rgb(63, 208, 211);
}

.icon_thankYou .path7:before {
	content: "\e998";
	margin-left: -1em;
	color: rgb(2, 126, 126);
}

.icon_thankYou .path8:before {
	content: "\e999";
	margin-left: -1em;
	color: rgb(29, 29, 27);
}

.icon_thankYou .path9:before {
	content: "\e99a";
	margin-left: -1em;
	color: rgb(2, 126, 126);
}

.icon_thankYou .path10:before {
	content: "\e99b";
	margin-left: -1em;
	color: rgb(45, 191, 191);
}

.icon_thankYou .path11:before {
	content: "\e99c";
	margin-left: -1em;
	color: rgb(45, 191, 191);
}

.icon_thankYou .path12:before {
	content: "\e99d";
	margin-left: -1em;
	color: rgb(45, 191, 191);
}

.icon_openTask:before {
	content: "\e99e";
}

.icon_aqTime:before {
	content: "\e99f";
}

.icon_openOpportunities:before {
	content: "\e9a0";
}

.icon_editLayout:before {
	content: "\e9a1";
}

.icon_lookup:before {
	content: "\e9a2";
}

.icon__Edit:before {
	content: "\e9a3";
}

.icon__Save:before {
	content: "\e9a4";
}

.icon_refresh:before {
	content: "\e9a5";
}

.icon_home:before {
	content: "\e9a6";
}

.icon_workflow:before {
	content: "\e9a7";
}

.icon_productionIssue:before {
	content: "\e9a8";
}

.icon_bug:before {
	content: "\e9a9";
}

.icon_eyeView:before {
	content: "\e9aa";
}

.icon_eyeDView:before {
	content: "\e9ab";
}

.icon_report:before {
	content: "\e9b2";
}

.icon_finance:before {
	content: "\e9b3";
}

.icon_delete22:before {
	content: "\e9b4";
}

.icon_delete01:before {
	content: "\e9b5";
}

.icon_Layout01 .path1:before {
	content: "\e9b6";
	color: rgb(0, 0, 0);
}

.icon_Layout01 .path2:before {
	content: "\e9b7";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout01 .path3:before {
	content: "\e9b8";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout01 .path4:before {
	content: "\e9b9";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout01 .path5:before {
	content: "\e9ba";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout01 .path6:before {
	content: "\e9bb";
	margin-left: -1em;
	color: rgb(0, 0, 0);
	opacity: 0.3;
}

.icon_Layout01 .path7:before {
	content: "\e9bc";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout04 .path1:before {
	content: "\e9bd";
	color: rgb(0, 0, 0);
}

.icon_Layout04 .path2:before {
	content: "\e9be";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout04 .path3:before {
	content: "\e9bf";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout04 .path4:before {
	content: "\e9c0";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout04 .path5:before {
	content: "\e9c1";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout04 .path6:before {
	content: "\e9c2";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout04 .path7:before {
	content: "\e9c3";
	margin-left: -1em;
	color: rgb(0, 0, 0);
	opacity: 0.3;
}

.icon_Layout04 .path8:before {
	content: "\e9c4";
	margin-left: -1em;
	color: rgb(0, 0, 0);
	opacity: 0.3;
}

.icon_Layout05 .path1:before {
	content: "\e9c5";
	color: rgb(0, 0, 0);
}

.icon_Layout05 .path2:before {
	content: "\e9c6";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout05 .path3:before {
	content: "\e9c7";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout05 .path4:before {
	content: "\e9c8";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout05 .path5:before {
	content: "\e9c9";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout05 .path6:before {
	content: "\e9ca";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout05 .path7:before {
	content: "\e9cb";
	margin-left: -1em;
	color: rgb(0, 0, 0);
	opacity: 0.3;
}

.icon_Layout05 .path8:before {
	content: "\e9cc";
	margin-left: -1em;
	color: rgb(0, 0, 0);
	opacity: 0.3;
}

.icon_Layout05 .path9:before {
	content: "\e9cd";
	margin-left: -1em;
	color: rgb(0, 0, 0);
	opacity: 0.3;
}

.icon_Layout02 .path1:before {
	content: "\e9ce";
	color: rgb(0, 0, 0);
}

.icon_Layout02 .path2:before {
	content: "\e9cf";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout02 .path3:before {
	content: "\e9d0";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout02 .path4:before {
	content: "\e9d1";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout02 .path5:before {
	content: "\e9d2";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout02 .path6:before {
	content: "\e9d3";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout02 .path7:before {
	content: "\e9d4";
	margin-left: -1em;
	color: rgb(0, 0, 0);
	opacity: 0.3;
}

.icon_Layout02 .path8:before {
	content: "\e9d5";
	margin-left: -1em;
	color: rgb(0, 0, 0);
	opacity: 0.3;
}

.icon_Layout03 .path1:before {
	content: "\e9d6";
	color: rgb(0, 0, 0);
}

.icon_Layout03 .path2:before {
	content: "\e9d7";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout03 .path3:before {
	content: "\e9d8";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout03 .path4:before {
	content: "\e9d9";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout03 .path5:before {
	content: "\e9da";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout03 .path6:before {
	content: "\e9db";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout03 .path7:before {
	content: "\e9dc";
	margin-left: -1em;
	color: rgb(0, 0, 0);
	opacity: 0.3;
}

.icon_Layout03 .path8:before {
	content: "\e9dd";
	margin-left: -1em;
	color: rgb(0, 0, 0);
	opacity: 0.3;
}

.icon_Layout06 .path1:before {
	content: "\e9de";
	color: rgb(0, 0, 0);
}

.icon_Layout06 .path2:before {
	content: "\e9df";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout06 .path3:before {
	content: "\e9e0";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout06 .path4:before {
	content: "\e9e1";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout06 .path5:before {
	content: "\e9e2";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout06 .path6:before {
	content: "\e9e3";
	margin-left: -1em;
	color: rgb(0, 0, 0);
}

.icon_Layout06 .path7:before {
	content: "\e9e4";
	margin-left: -1em;
	color: rgb(0, 0, 0);
	opacity: 0.3;
}

.icon_Layout06 .path8:before {
	content: "\e9e5";
	margin-left: -1em;
	color: rgb(0, 0, 0);
	opacity: 0.3;
}

.icon_Layout06 .path9:before {
	content: "\e9e6";
	margin-left: -1em;
	color: rgb(0, 0, 0);
	opacity: 0.3;
}

.icon_BeatsLogoV .path1:before {
	content: "\e9e7";
	color: rgb(11, 40, 50);
}

.icon_BeatsLogoV .path2:before {
	content: "\e9e8";
	margin-left: -1em;
	color: rgb(4, 164, 205);
}

.icon_BeatsLogoV .path3:before {
	content: "\e9e9";
	margin-left: -1em;
	color: rgb(11, 40, 50);
}

.icon_BeatsLogoV .path4:before {
	content: "\e9ea";
	margin-left: -1em;
	color: rgb(11, 40, 50);
}

.icon_BeatsLogoV .path5:before {
	content: "\e9eb";
	margin-left: -1em;
	color: rgb(11, 40, 50);
}

.icon_BeatsLogoV .path6:before {
	content: "\e9ec";
	margin-left: -1em;
	color: rgb(11, 40, 50);
}

.icon_BeatsLogoV .path7:before {
	content: "\e9ed";
	margin-left: -1em;
	color: rgb(11, 40, 50);
}

.icon_BeatsLogoV .path8:before {
	content: "\e9ee";
	margin-left: -1em;
	color: rgb(11, 40, 50);
}

.icon_BeatsLogoV .path9:before {
	content: "\e9ef";
	margin-left: -1em;
	color: rgb(11, 40, 50);
}

.icon_BeatsLogoNew3 .path1:before {
	content: "\e9f0";
	color: rgb(11, 40, 50);
}

.icon_BeatsLogoNew3 .path2:before {
	content: "\e9f1";
	margin-left: -1em;
	color: rgb(11, 40, 50);
}

.icon_BeatsLogoNew3 .path3:before {
	content: "\e9f2";
	margin-left: -1em;
	color: rgb(11, 40, 50);
}

.icon_BeatsLogoNew3 .path4:before {
	content: "\e9f3";
	margin-left: -1em;
	color: rgb(11, 40, 50);
}

.icon_BeatsLogoNew3 .path5:before {
	content: "\e9f4";
	margin-left: -1em;
	color: rgb(11, 40, 50);
}

.icon_BeatsLogoNew3 .path6:before {
	content: "\e9f5";
	margin-left: -1em;
	color: rgb(11, 40, 50);
}

.icon_BeatsLogoNew3 .path7:before {
	content: "\e9f6";
	margin-left: -1em;
	color: rgb(4, 164, 205);
}

.icon_BeatsLogoNew3 .path8:before {
	content: "\e9f7";
	margin-left: -1em;
	color: rgb(11, 40, 50);
}

.icon_BeatsLogoNew3 .path9:before {
	content: "\e9f8";
	margin-left: -1em;
	color: rgb(11, 40, 50);
}

.icon_add .path1:before {
	content: "\e900";
	color: rgb(35, 31, 32);
}

.icon_add .path2:before {
	content: "\ea32";
	margin-left: -1em;
	color: rgb(255, 255, 255);
}

.icon_add-member:before {
	content: "\e901";
	color: #484848;
}

.icon_emalalert:before {
	content: "\e902";
}

.icon_arrow-down:before {
	content: "\e903";
}

.icon_arrow-left:before {
	content: "\e904";
}

.icon_arrow-right:before {
	content: "\e905";
}

.icon_arrow-up:before {
	content: "\e906";
}

.icon_bid-co-ordinator-review:before {
	content: "\e907";
}

.icon_bids-lost:before {
	content: "\e908";
}

.icon_bid-submission:before {
	content: "\e909";
}

.icon_calender:before {
	content: "\e90a";
}

.icon_cancel:before {
	content: "\e90b";
}

.icon_context-menu1:before {
	content: "\e90c";
}

.icon_context-menu2:before {
	content: "\e90d";
}

.icon_customer-review:before {
	content: "\e90e";
}

.icon_dashboard:before {
	content: "\e90f";
}

.icon_deal-review:before {
	content: "\e910";
}

.icon_default-profile-image:before {
	content: "\e911";
}

.icon_delete1:before {
	content: "\e912";
}

.icon_delivery-head-approval:before {
	content: "\e913";
}

.icon_development-testing:before {
	content: "\e914";
}

.icon_download:before {
	content: "\e915";
}

.icon_dropdown:before {
	content: "\e916";
}

.icon_expand1:before {
	content: "\e917";
}

.icon_filter1:before {
	content: "\e918";
}

.icon_grid-view:before {
	content: "\e919";
}

.icon_inbox:before {
	content: "\e91a";
}

.icon_list-view:before {
	content: "\e91b";
}

.icon_menu:before {
	content: "\e91c";
}

.icon_my-task:before {
	content: "\e91d";
}

.icon_pre-pursuit-review:before {
	content: "\e91e";
}

.icon_pricing:before {
	content: "\e91f";
}

.icon_pricing-inputs:before {
	content: "\e920";
}

.icon_reply:before {
	content: "\e921";
}

.icon_reports:before {
	content: "\e922";
}

.icon_rfp-initiation:before {
	content: "\e923";
}

.icon_saved-successfully:before {
	content: "\e924";
}

.icon_settings:before {
	content: "\e925";
}

.icon_solution-engineering:before {
	content: "\e926";
}

.icon_sort:before {
	content: "\e927";
	color: #484848;
}

.icon_strategic-review:before {
	content: "\e938";
}

.icon_time-tracker:before {
	content: "\e93e";
}

.icon_upload1:before {
	content: "\e93f";
}

.icon_view1:before {
	content: "\e940";
}

.icon_won:before {
	content: "\e94a";
}

.icon_workflow1:before {
	content: "\e95a";
}

.icon_bullet:before {
	content: "\e95c";
}

.icon_open:before {
	content: "\e961";
}

.icon_pending:before {
	content: "\e963";
}

.icon_in-progress:before {
	content: "\e964";
}

.icon_completed:before {
	content: "\e965";
}

.icon_cancelled:before {
	content: "\e966";
}

.icon_col_view:before {
	content: "\e967";
}

.icon_zip_file:before {
	content: "\e968";
}

.icon_create-copy:before {
	content: "\e969";
}

.icon_csv:before {
	content: "\e96a";
}

.icon_ico_file:before {
	content: "\e96b";
}

.icon_image_file:before {
	content: "\e96c";
}

.icon_pdf_file:before {
	content: "\e96d";
}

.icon_xls_file:before {
	content: "\e96e";
}

.icon_xlsx:before {
	content: "\e96f";
}

.icon_xml_file:before {
	content: "\e970";
}

.icon_alert1:before {
	content: "\e971";
}

.icon_milestone:before {
	content: "\e9ac";
}

.icon_hold:before {
	content: "\e9ad";
}

.icon_bottleneck:before {
	content: "\e9ae";
}

.icon_incomplete:before {
	content: "\e9af";
}

.icon_f_doc:before {
	content: "\e9b0";
}

.icon_f_docx:before {
	content: "\e9b1";
}

.icon_f_htm:before {
	content: "\e9f9";
}

.icon_f_html:before {
	content: "\e9fa";
}

.icon_f_ico:before {
	content: "\e9fb";
}

.icon_f_jpg:before {
	content: "\e9fc";
}

.icon_f_mpp:before {
	content: "\e9fd";
}

.icon_f_msg:before {
	content: "\e9fe";
}

.icon_f_png:before {
	content: "\e9ff";
}

.icon_f_pdf:before {
	content: "\ea00";
}

.icon_f_ppt:before {
	content: "\ea01";
}

.icon_f_pptx:before {
	content: "\ea02";
}

.icon_f_rar:before {
	content: "\ea03";
}

.icon_f_rtf:before {
	content: "\ea04";
}

.icon_f_tif:before {
	content: "\ea05";
}

.icon_f_tiff:before {
	content: "\ea06";
}

.icon_f_txt:before {
	content: "\ea07";
}

.icon_f_vsd:before {
	content: "\ea08";
}

.icon_f_xls:before {
	content: "\ea09";
}

.icon_f_xlsx:before {
	content: "\ea0c";
}

.icon_f_xlsm:before {
	content: "\ea0a";
}

.icon_f_zip:before {
	content: "\ea0b";
}

.icon_editNote:before {
	content: "\ea0d";
}

.icon_calender_n:before {
	content: "\ea0e";
}

.icon_group:before {
	content: "\ea0f";
}

.icon_waitingPM:before {
	content: "\ea10";
}

.icon_waitingDM:before {
	content: "\ea11";
}

.icon_waitingRM:before {
	content: "\ea12";
}

.icon_waiting:before {
	content: "\ea13";
}

.icon_paused:before {
	content: "\ea14";
}

.icon_notApproved:before {
	content: "\ea15";
}

.icon_approved:before {
	content: "\ea16";
}

.icon_warning1:before {
	content: "\ea17";
}

.icon_pencilSolid:before {
	content: "\ea18";
}

.icon_arrowUpSolidN:before {
	content: "\ea19";
}

.icon_arrowRightSolidN:before {
	content: "\ea1a";
}

.icon_arrowDownSolidN:before {
	content: "\ea1b";
}

.icon_arrowLeftSolidN:before {
	content: "\ea1c";
}

.icon_myCardView:before {
	content: "\ea1d";
}

.icon_myGridView:before {
	content: "\ea1e";
}

.icon_delete3:before {
	content: "\ea1f";
}

.icon_share:before {
	content: "\ea20";
}

.icon_export:before {
	content: "\ea21";
}

.icon_board:before {
	content: "\ea22";
}

.icon_star:before {
	content: "\ea23";
}

.icon_bkgColor:before {
	content: "\ea24";
}

.icon_aboutBoard:before {
	content: "\ea25";
}

.icon_label:before {
	content: "\ea26";
}

.icon_collections:before {
	content: "\ea27";
}

.icon_archieved:before {
	content: "\ea28";
}

.icon_emailBoard:before {
	content: "\ea2a";
}

.icon_print:before {
	content: "\ea2c";
}

.icon_close1:before {
	content: "\ea34";
}

.icon_linkBoard:before {
	content: "\ea36";
}

.icon_boardIlinked:before {
	content: "\ea2d";
}

.icon_personBoard:before {
	content: "\ea2e";
}

.icon_rightMenuBtn:before {
	content: "\ea2f";
}

.icon_alert:before {
	content: "\ea30";
}

.icon_emailAlert:before {
	content: "\ea31";
}

.icon_checkbox-selected:before {
	content: "\ea29";
}

.icon_checkbox-unselected:before {
	content: "\ea2b";
}

.icon_radio-button-selected:before {
	content: "\ea33";
}

.icon_radio-button-unselected:before {
	content: "\ea35";
}

.icon_paperClip:before {
	content: "\ea37";
}

.icon_home01:before {
	content: "\ea38";
}

.icon_home02:before {
	content: "\ea39";
}

.icon_leftArrowThick:before {
	content: "\ea3a";
}

.icon_move:before {
	content: "\ea3b";
}

.icon_finputField:before {
	content: "\ea3c";
}

.icon_fhiddenField:before {
	content: "\ea3d";
}

.icon_ftextArea:before {
	content: "\ea3e";
}

.icon_fdate:before {
	content: "\ea3f";
}

.icon_fdateTime:before {
	content: "\ea40";
}

.icon_fdropdown:before {
	content: "\ea41";
}

.icon_fdropdownMS:before {
	content: "\ea42";
}

.icon_fradioBtn:before {
	content: "\ea43";
}

.icon_fradioBtnList:before {
	content: "\ea44";
}

.icon_fcheckbox:before {
	content: "\ea45";
}

.icon_fcheckboxList:before {
	content: "\ea46";
}

.icon_ftable:before {
	content: "\ea47";
}

.icon_fieldConfigurator:before {
	content: "\ea48";
}

.icon_screenConfigurator:before {
	content: "\ea49";
}

.icon_workflowConfigurator:before {
	content: "\ea4a";
}

.icon_otherConfigurator:before {
	content: "\ea4b";
}

.icon_myCompany:before {
	content: "\ea4c";
}

.icon_MasterData:before {
	content: "\ea4d";
}

.icon_workflowSetUp:before {
	content: "\ea4e";
}

.icon_userManagement:before {
	content: "\ea4f";
}

.icon_companyInfo:before {
	content: "\ea50";
}

.icon_companyLocation:before {
	content: "\ea51";
}

.icon_generalSettings:before {
	content: "\ea52";
}

.icon_localization:before {
	content: "\ea53";
}

.icon_roleBasedPrivileges:before {
	content: "\ea54";
}

.icon_subCompany:before {
	content: "\ea55";
}

.icon_userAccounts:before {
	content: "\ea56";
}

.icon_userContextFields:before {
	content: "\ea57";
}

.icon_userFields:before {
	content: "\ea58";
}

.icon_userGroups:before {
	content: "\ea59";
}

.icon_userRoles:before {
	content: "\ea5a";
}

.icon_userStatistics:before {
	content: "\ea5b";
}

.icon_settingsOutline:before {
	content: "\ea5c";
}

.icon_downloadThin:before {
	content: "\ea5d";
}

.icon_refreshThin:before {
	content: "\ea5e";
}

.icon_load:before {
	content: "\ea5f";
}

.icon_syncFieldConfig:before {
	content: "\ea60";
}

.icon_addControl:before {
	content: "\ea61";
}

.icon_validate:before {
	content: "\ea62";
}

.icon_permission:before {
	content: "\ea63";
}

.icon_broadcastMsg:before {
	content: "\ea64";
}

.icon_complianceNsecurity:before {
	content: "\ea65";
}
.icon_resetPw:before {
	content: "\ea66";
}
.icon_copy:before {
	content: "\ea77";
}
.fa-undo:before {
	content: "\f0e2";
}
.icon_clipNew:before {
	content: "\eb11";
}
.icon_chatText:before {
	content: "\eb12";
}
.icon_add-circle-fill:before {
	content: "\eb13";
}
.icon_unDelete:before {
	content: "\eb14";
}
.icon_nodeMinus:before {
	content: "\eb15";
}
.icon_nodePlus:before {
	content: "\eb16";
}
.icon_normalView:before {
	content: "\eb0f";
}

.icon_compactView:before {
	content: "\eb10";
}
.icon_email:before {
    content: "\eb1f";
}
.icon_business-claim:before {
    content: "\eb17";
}

.icon_individual-claim:before {
    content: "\eb18";
}

.icon_registration-between-two-parties:before {
    content: "\eb19";
}

.icon_Registered-Organization:before {
    content: "\eb1a";
}

.icon_registered-user-portal:before {
    content: "\eb1b";
}

.icon_myCompany2:before {
    content: "\eb1c";
}

.icon_user-2-line2:before {
    content: "\eb1d";
}

.icon_export1:before {
    content: "\eb1e";
}
.icon_bulkpay:before {
  content: "\eb2f";
}
.icon_track-payments:before {
  content: "\eb30";
}
.icon_openCredit:before {
  content: "\eb31";
}
.icon_invoice-template:before {
  content: "\eb32";
}
.icon_opening:before {
  content: "\eb33";
}
.icon_bulkPayment:before {
  content: "\eb34";
}
.icon_dealApproval:before {
  content: "\eb35";
}
.icon_dealRegistration:before {
  content: "\eb36";
}
.icon_archieve:before {
  content: "\eb37";
}
.icon_resourceAllocation:before {
  content: "\eb40";
}
.icon_projectSetup:before {
  content: "\eb41";
}
.icon_projectInProgress:before {
  content: "\eb42";
}
.icon_projectArchive:before {
  content: "\eb43";
}
.icon_ERCAcknowledgement:before {
  content: "\eb44";
}
.icon_ERCAcknowledgement1:before {
  content: "\eb45";
}
.icon_AwaitingACH:before {
  content: "\eb46";
}
.icon_ACHDisbursementVerification:before {
  content: "\eb47";
}
.icon_ACHDisbursement:before {
  content: "\eb48";
}
.icon_checkRequestVerification:before {
  content: "\eb49";
}
.icon_printCheck:before {
  content: "\eb4a";
}
.icon_lockboxAccountSettlement:before {
  content: "\eb4b";
}
.icon_lockboxClosure:before {
  content: "\eb4c";
}
.icon_taxAddressChangeAchive:before {
  content: "\eb4d";
}
.icon_dailyMonitoringArchive:before {
  content: "\eb5a";
}
.icon_dailyMonitoringRequest:before {
  content: "\eb60";
}
.icon_taxMonitoringArchive:before {
  content: "\eb68";
}
.icon_taxMonitoringWIP:before {
  content: "\eb6f";
}
.icon_taxMonitoringSetup:before {
  content: "\eb77";
}
.icon_taxMonitoringCreation:before {
  content: "\eb7c";
}
.icon_taxAddressChangeRequest:before {
  content: "\eb86";
}
.icon_taxMonitoringReview:before {
  content: "\eb8b";
}
.icon_taxAddressChangeProcess:before {
  content: "\eb94";
}
.icon_archive:before {
  content: "\eb9f";
}
.icon_bankSetup:before {
  content: "\eba0";
}
.icon_applicationProcessing:before {
  content: "\eba1";
}
.icon_preliminryProcessing:before {
  content: "\eba2";
}
.icon_kycValidationOk:before {
  content: "\eba3";
}
.icon_kycValidation:before {
  content: "\eba4";
}
.icon_newLockboxAccountReq:before {
  content: "\eba5";
}
.icon_awaitingcheck:before {
  content: "\ebc1";
}
.icon_awaitingcheck01:before {
  content: "\ebc2";
}
.icon_bankSetupVerification:before {
  content: "\ebc3";
}
@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}

/*!
 *  Font Awesome 4.6.2 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('../BLP/fonts/fontawesome-webfont.eot?v=4.6.2');src:url('../BLP/fonts/fontawesome-webfont.eot?#iefix&v=4.6.2') format('embedded-opentype'),url('../BLP/fonts/fontawesome-webfont.woff2?v=4.6.2') format('woff2'),url('../BLP/fonts/fontawesome-webfont.woff?v=4.6.2') format('woff'),url('../BLP/fonts/fontawesome-webfont.ttf?v=4.6.2') format('truetype'),url('../BLP/fonts/fontawesome-webfont.svg?v=4.6.2#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

/*@charset "UTF-8";
@font-face {
    font-family: 'toast';
    src: url("../assets/fonts/toast.eot?76tjxy");
    src: url("../assets/fonts/toast.eot?76tjxy#iefix") format("embedded-opentype"), url("../assets/fonts/toast.ttf?76tjxy") format("truetype"), 
        url("../assets/fonts/toast.woff?76tjxy") format("woff"), url("../assets/fonts/toast.svg?76tjxy#toast") format("svg");
    font-weight: normal;
    font-style: normal;
}*/

i.toast-icon {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'toast' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*.toast-icon-error:before {
    content: "\e966";
    font-family: 'beats' !important;
}

.toast-icon-info:before {
    content: "\2139";
    font-family: 'beats' !important;
}*/

.toast-icon-notice:before {
    content: "";
}

/*.toast-icon-success:before {
    content: "\e965";
    font-family: 'beats' !important;
}

.toast-icon-warning:before {
    content: "\e971";
    font-family: 'beats' !important
}*/

.toast-item-wrapper {
    min-width: 250px;
    max-width: 500px;
    padding: 10px;
    box-sizing: border-box;
    color: #fff;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: auto;
}

    .toast-item-wrapper i.toast-icon {
        position: absolute;
        top: 8px;
        left: 5px;
        width: 50px;
        text-align: center;
        vertical-align: middle;
        font-size: 18px;
        display:none;
    }

    .toast-item-wrapper .toast-close {
        font-size: 18px;
        position: absolute;
        top: 0;
        right: 0;
        width: 20px;
        text-align: center;
        cursor: pointer;
        display: none;
    }
.toast-item-wrapper {
    font-size: 14px;
    font-family: 'WorkSansRegular';
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(24,25,26,0.15);
}
    .toast-item-wrapper.success {
        background-color: #218666;
        border: 1px solid #218666;
    }

    .toast-item-wrapper.error {
        background-color: #B40220;
        border: 1px solid #B40220;
     }

    .toast-item-wrapper.warning {
        background-color: #F4B836;
        border: 1px solid #F4B836;
      }

    .toast-item-wrapper.notice {
        background-color: #48a9f8;
        border: 1px solid #208ce4;
    }

    .toast-item-wrapper.info {
        background-color: #0156AD;
        border: 1px solid #0156AD;
        padding: 10px 15px;
        border-radius: 5px;
        box-shadow: 0px 4px 8px rgba(24,25,26,0.15);
    }

    .toast-item-wrapper.toast-top-left {
        left: 20px;
        top: 20px;
    }

    .toast-item-wrapper.toast-top-right {
        right: 15px !important;
        top: 10px !important;
    }

    .toast-item-wrapper.toast-top-center {
        margin: 0 auto;
        top: 20px;
    }

    .toast-item-wrapper.toast-bottom-left {
        left: 20px;
        bottom: 20px;
    }

    .toast-item-wrapper.toast-bottom-right {
        right: 20px;
        bottom: 20px;
    }

    .toast-item-wrapper.toast-bottom-center {
        margin: 0 auto;
        bottom: 20px;
    }

    .toast-item-wrapper.fullscreen {
        left: 20px;
        right: 20px;
        width: calc(100% - 40px);
    }

    .toast-item-wrapper p {
        margin: 0;
    }

    .toast-item-wrapper .toast-message {
        font-size: 13px;
        overflow-wrap: break-word;
        overflow: auto;
        max-height: 100px;
    }

    .toast-item-wrapper .toast-progress {
        width: 0;
        height: 3px;
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .toast-item-wrapper.rtl {
        direction: rtl;
        text-align: right;
    }

        .toast-item-wrapper.rtl i.toast-icon {
            left: auto;
            right: 0;
        }

        .toast-item-wrapper.rtl .toast-close {
            right: auto;
            left: 0;
        }

        .toast-item-wrapper.rtl p {
            text-align: right;
        }

        .toast-item-wrapper.rtl .toast-progress {
            left: auto;
            right: 0;
        }

.toast-title {
    font-family: 'WorkSansSemiBold' !important;
    font-size: 14px;
}

