/* --------------------------------

Primary style

-------------------------------- */
*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*::after, *::before {
    content: '';
}

* {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

body {
    font-size: 100%;
    font-family: inherit;
    color: #3c3c3c;
    min-width: 300px;
}

a {
    color: #00aeef;
    text-decoration: none;
}

/* --------------------------------

Main components

-------------------------------- */
header {
    position: relative;
    height: 160px;
    line-height: 180px;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header h1 {
    font-size: 20px;
    font-size: 1.25rem;
}

@media only screen and (min-width: 768px) {

    header h1 {
        font-size: 26px;
        font-size: 1.625rem;
    }
}

.cd-tabs {
    position: relative;
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    -webkit-box-shadow: 10px 10px 33px -13px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 33px -13px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 33px -13px rgba(0, 0, 0, 0.75);
}

.cd-tabs:after {
    content: "";
    display: table;
    clear: both;
}

.cd-tabs::after {
    /* subtle gradient layer on top right - to indicate it's possible to scroll */
    position: absolute;
    top: 0;
    right: 0;
    height: 60px;
    width: 50px;
    z-index: 1;
    pointer-events: none;
    background: -webkit-linear-gradient(right, #f8f7ee, rgba(248, 247, 238, 0));
    background: linear-gradient(to left, #f8f7ee, rgba(248, 247, 238, 0));
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-tabs-navigation a.selected, .no-touch .cd-tabs-navigation a:hover {
    -webkit-transition: all 0s ease;
    -moz-transition: all 0s ease;
    -o-transition: all 0s ease;
    transition: all 0s ease;
}

.no-cssgradients .cd-tabs::after {
    display: none;
}

.cd-tabs.is-ended::after {
    /* class added in jQuery - remove the gradient layer when it's no longer possible to scroll */
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-tabs nav {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
}

@media only screen and (min-width: 768px) {
    .cd-tabs::after {
        display: none;
    }

    .cd-tabs nav {
        position: absolute;
        top: 0;
        left: 0;
        box-shadow: inset -2px 0 3px rgba(203, 196, 130, 0.06);
        z-index: 1;
    }
}

@media only screen and (max-width: 768px) {
    #captcha-content div:nth-child(1) {
        margin: 0 auto;
    }

    .navbar-default .nav li a {

        text-transform: uppercase;
        font-weight: 400;
        letter-spacing: 1px;
        color: #222;
        padding: 15px;
    }

    .cd-tabs-navigation {
        /* move the nav to the left on medium sized devices */
        width: 80px;
        float: left;
        background: #ffffff;
    }

    .cd-tabs-navigation a {
        height: 100px;
        width: 80px;
        overflow: hidden;
    }

    .cd-tabs-navigation a .text-p1 {
        display: none;
    }

    .cd-tabs-navigation a.selected {

    }

    .cd-tabs-navigation a::before {
        top: 22px;
    }

    .cd-tabs-navigation li {
        float: left;
        width: 33.3%;
    }

    .home-block {
        height: 675px !important;
    }
}

@media only screen and (min-width: 960px) {
    .cd-tabs nav {
        position: absolute;
        float: none;
        background: transparent;
        box-shadow: none;
        height: 100%;
        overflow: hidden;
    }
}

.cd-tabs-navigation {
    width: 100%;
    background: #ffffff;
}

.cd-tabs-navigation:after {
    content: "";
    display: table;
    clear: both;
}

.cd-tabs-navigation li {
    height: 33.3333333%;
}

.cd-tabs-navigation a {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-size: 0.75rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 700;
    padding-top: 20px;
}

.no-touch .cd-tabs-navigation a:hover {
    color: #29324e;

}

.cd-tabs-navigation a.selected {

    color: #ffffff;
    width: 100%;
}

.cd-tabs-navigation li.selected i, .cd-tabs-navigation li i {
    margin-top: -10px;
    margin-bottom: 7px;
}

.cd-tabs-navigation li.selected a, .cd-tabs-navigation li.selected i, .cd-tabs-navigation li.selected span {
    color: #ffffff;
    -webkit-transition: all 0s ease;
    -moz-transition: all 0s ease;
    -o-transition: all 0s ease;
    transition: all 0s ease;
}

.cd-tabs-navigation a::before {
    /* icons */
    position: absolute;
    top: 12px;
    left: 50%;
    margin-left: -10px;
    display: inline-block;
    height: 20px;
    width: 20px;

    background-repeat: no-repeat;
}

.cd-tabs-navigation a[data-content='inbox']::before {
    background-position: 0 0;
}

.cd-tabs-navigation a[data-content='new']::before {
    background-position: -20px 0;
}

.cd-tabs-navigation a[data-content='gallery']::before {
    background-position: -40px 0;
}

.cd-tabs-navigation a[data-content='store']::before {
    background-position: -60px 0;
}

.cd-tabs-navigation a[data-content='settings']::before {
    background-position: -80px 0;
}

.cd-tabs-navigation a[data-content='trash']::before {
    background-position: -100px 0;
}

.cd-tabs-navigation a[data-content='inbox'].selected::before {
    background-position: 0 -20px;
}

.cd-tabs-navigation a[data-content='new'].selected::before {
    background-position: -20px -20px;
}

.cd-tabs-navigation a[data-content='gallery'].selected::before {
    background-position: -40px -20px;
}

.cd-tabs-navigation a[data-content='store'].selected::before {
    background-position: -60px -20px;
}

.cd-tabs-navigation a[data-content='settings'].selected::before {
    background-position: -80px -20px;
}

.cd-tabs-navigation a[data-content='trash'].selected::before {
    background-position: -100px -20px;
}

@media only screen and (min-width: 768px) {
    .cd-tabs-navigation {
        /* move the nav to the left on medium sized devices */
        width: 125px;
        float: left;
        height: 100%;
    }

    .cd-tabs-navigation a {
        width: 125px;
        padding-top: 25px;
        height: 100%;
    }

    .cd-tabs-navigation a.selected {

    }

    .cd-tabs-navigation a::before {
        top: 22px;
    }
}

@media only screen and (min-width: 960px) {
    .cd-tabs-navigation {
        /* tabbed on top on big devices */
        width: 235px;
        background-color: rgba(255, 255, 255, 1);
        box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
    }

    .cd-tabs-navigation a {
        text-align: center;
        width: auto;
        font-size: 0.875rem;
        padding: 1.6em 1.2em 0.6em 1.2em;
        height: 100%;
    }

    .cd-tabs-navigation a.selected {

    }

    .cd-tabs-navigation a::before {
        top: 50%;
        margin-top: -10px;
        margin-left: 0;
        left: 38px;
    }
}

.cd-tabs-content {
    background: #ffffff;
}

.cd-tabs-content li {
    display: none;
    padding: 0.2em;
}

.cd-tabs-content li.selected {
    display: block;
    -webkit-animation: cd-fade-in 0.5s;
    -moz-animation: cd-fade-in 0.5s;
    animation: cd-fade-in 0.5s;
    overflow: hidden;
}

.cd-tabs-content li p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #8493bf;
    margin-bottom: 2em;
}

@media only screen and (min-width: 768px) {
    .cd-tabs-content {
        min-height: 480px;
    }

    .cd-tabs-content li {
        padding: 2em 2em 2em 7em;
    }
}

@media only screen and (min-width: 960px) {
    .cd-tabs-content {
        min-height: 480px;
        margin-left: 235px;
    }

    .cd-tabs-content li {
        padding: 0.2em 0.2em 0.2em 8em;;
    }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    .cd-tabs-content {
        min-height: 300px;
    }

    .cd-tabs-content li {
        padding: 0.2em 0.2em 0.2em 8em;;
    }

    .text-p1 {
        display: none;
    }

    .cd-tabs nav {
        min-height: 300px;
        height: 100%;
    }
}

@media all and (min-width: 960px) {
    .cd-tabs-content {
        min-height: 0;
    }

    .cd-tabs-content li {
        padding: 3px 5px 5px 5px;
        max-height: 390px;
        height: 100%;
    }

    .text-p1 {
        font-size: 12px;
        font-weight: normal;
        color: #434c53;
        display: block;
        margin-top: 4px;
        line-height: 1rem;
    }

    .cd-tabs-content li p {
        font-size: 16px;
        font-size: 1rem;
    }
}

@-webkit-keyframes cd-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes cd-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes cd-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.navbar-brand {
    padding: 0;
}

.blurred-bg {
}

.left-inner-addon {
    position: relative;
}

.left-inner-addon input,
.left-inner-addon .mat_elem {
    padding-left: 36px;
    border-radius: 0;
    height: 42px;
    margin-bottom: 22px;
    font-size: 14px;
}

.left-inner-addon textarea,
.left-inner-addon .mat_elem {
    padding-left: 36px;
    border-radius: 0;
    margin-bottom: 22px;
    font-size: 14px;
}

.left-inner-addon i {
    position: absolute;
    pointer-events: none;
    color: #cccccc;
    padding: 14px 12px 10px;
}

.left-inner-addon i:focus {
    color: red;
}

.red:focus {
    color: red;
}

.cd-tabs-navigation a:hover, a:focus {
    text-decoration: none;
}

.text-icon {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 100;
}

.full {
    width: 100%;
}

.gap {
    height: 30px;
    width: 100%;
    clear: both;
    display: block;
}

.footer {
    background: #F0F0F0;
    height: auto;
    padding-bottom: 30px;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #CCCCCC;
    border-top: 1px solid #DDDDDD;
    margin-top: 0;
}

.footer p {
    margin: 0;
    line-height: 25px;
}

.footer img {
    max-width: 100%;
}

.footer h3 {
    border-bottom: 1px solid #BAC1C8;
    color: #54697E;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    padding: 40px 0 10px;
    text-transform: uppercase;
}

.footer ul {
    font-size: 13px;
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
    margin-top: 15px;
    color: #7F8C8D;
}

.footer ul li a {
    padding: 0 0 5px 0;
    display: block;
}

.footer a {
    color: #78828D;
    font-size: 13px;
}

.footer a:hover {
    text-decoration: none;
    font-size: 13px;
}

.supportLi h4 {
    font-size: 20px;
    font-weight: lighter;
    line-height: normal;
    margin-bottom: 0 !important;
    padding-bottom: 0;
}

.newsletter-box input#appendedInputButton {
    background: #FFFFFF;
    display: inline-block;
    float: left;
    height: 30px;
    clear: both;
    width: 100%;
}

.newsletter-box .btn {
    border: medium none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    display: inline-block;
    height: 40px;
    padding: 0;
    width: 100%;
    color: #fff;
}

.newsletter-box {
    overflow: hidden;
}

.bg-gray {
    background-image: -moz-linear-gradient(center bottom, #BBBBBB 0%, #F0F0F0 100%);
    box-shadow: 0 1px 0 #B4B3B3;
}

.social li {
    background: none repeat scroll 0 0 #B5B5B5;
    border: 2px solid #B5B5B5;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    height: 36px;
    line-height: 36px;
    margin: 0 8px 0 0;
    padding: 0;
    text-align: center;
    width: 36px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.social li:hover {
    transform: scale(1.15) rotate(360deg);
    -webkit-transform: scale(1.1) rotate(360deg);
    -moz-transform: scale(1.1) rotate(360deg);
    -ms-transform: scale(1.1) rotate(360deg);
    -o-transform: scale(1.1) rotate(360deg);
}

.social li a {
    color: #EDEFF1;
}

.social li:hover {
    border: 2px solid #EDEFF1;
    background: #EDEFF1;
}

.footer .social li a i {
    font-size: 16px;
    color: #EDEFF1;
}

.footer-bottom {
    background: #E3E3E3;
    border-top: 1px solid #DDDDDD;
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer-bottom p.pull-left {
    padding-top: 6px;
}

.payments {
    font-size: 1.5em;
}

.footer-menu {
    text-align: left;
    font-size: 14px;
    line-height: 20px;
}

a.back-to-top {
    display: none;
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 20px;
    background: #cccccc no-repeat center 43%;
    color: #000;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

a.back-to-top i {
    margin-left: 15px;
    margin-top: 15px;
    font-size: 20px;
}

.not-home {
    border-bottom: 2px solid #3c3c3c;
}

.premii {
    background: none;
}

.titlu-pagina {
    font-family: inherit;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    color: #000;
    padding-bottom: 20px;
    margin-left: 15px;
}

.titlu-pagina-home {
    font-family: inherit;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    color: #000;
}

.alizarin {
    background: #e74c3c;
}

.amethyst {
    background: #9b59b6;
}

.emerald {
    background: #2ecc71;
}

.midnight-blue {
    background: #2c3e50;
}

.peter-river {
    background: #3498db;
}

.dl {
    padding: 15px 0;
    border-radius: 10px;
    position: relative;
    border: 1px solid #DDDDDD;
    margin-bottom: 30px;
}

.dl::after, .dl2::after {
    content: "";
    background: #f3f3f3 url("/assets/images/bg-boxes.png") repeat;
    border-radius: 10px;
    opacity: 0.35;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.dl2 {
    padding: 15px 0;
    border-radius: 10px;
    position: relative;
    border: 1px solid #DDDDDD;
    margin-bottom: 30px;
    min-height: 300px;
}

.dl:before {

}

.dl .brand {
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 10px 0;
    margin-top: 15px;
    text-align: left;
    font-size: 16px;
}

.dl2 .brand {
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 10px 20px;
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
}

.dl .discount {
    min-height: 50px;
    position: relative;
    font-size: 80px;
    line-height: 80px;
    text-align: center;
    font-weight: bold;

    padding: 20px 15px 0;
    color: #f1c40f;
}

.dl .discount:after {
    content: " ";

    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    position: absolute;
    bottom: -20px;
    left: 20%;
}

.dl .discount.alizarin:after {
    border-top: 20px solid #e74c3c;
}

.dl .discount.peter-river:after {
    border-top: 20px solid #3498db;
}

.dl .discount.emerald:after {
    border-top: 20px solid #2ecc71;
}

.dl .discount.amethyst:after {
    border-top: 20px solid #9b59b6;
}

.dl .discount .type {
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: -30px;
}

.dl .descr {
    color: #999;
    margin-top: 0;
    padding: 20px 0;
    text-align: left;
}

.dl2 .descr {
    color: #999;
    margin-top: 0;
    padding: 20px 25px;
    text-align: center;
}

.dl .ends {
    padding: 0 15px;
    color: #f1c40f;
    margin-bottom: 10px;
}

.dl .coupon {
    min-height: 50px;
    text-align: center;

    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    padding: 20px 15px;
}

.dl .coupon a.open-code {
    color: #16a085;
}

.dl .coupon .code {
    letter-spacing: 1px;
    border-radius: 4px;
    margin-top: 10px;
    padding: 10px 15px;
    color: #f1c40f;
    background: #f0f0f0;
}

.responsive-table {
    width: 100%;
}

@media (min-width: 48em) {
    .responsive-table {
        font-size: .9em;
    }
}

@media (min-width: 62em) {
    .responsive-table {
        font-size: 1em;
    }
}

.responsive-table thead {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

@media (min-width: 48em) {
    .responsive-table thead {
        position: relative;
        clip: auto;
        height: auto;
        width: auto;
        overflow: auto;
    }
}

.responsive-table thead th {
    background-color: #3c3c3c;
    border: 1px solid #3c3c3c;
    font-weight: normal;
    text-align: center;
    color: white;
}

.responsive-table thead th:first-of-type {

}

.responsive-table tbody,
.responsive-table tr,
.responsive-table th,
.responsive-table td {
    display: block;
    padding: 0;
    text-align: left;
    white-space: normal;
}

@media (min-width: 48em) {
    .responsive-table tr {
        display: table-row;
    }
}

.responsive-table th,
.responsive-table td {
    padding: .5em;
    vertical-align: middle;
}

@media (min-width: 30em) {
    .responsive-table th,
    .responsive-table td {
        padding: .75em .5em;
    }
}

@media (min-width: 48em) {
    .responsive-table th,
    .responsive-table td {
        display: table-cell;
        padding: .5em;
    }
}

@media (min-width: 62em) {
    .responsive-table th,
    .responsive-table td {
        padding: .75em .5em;
    }
}

@media (min-width: 75em) {
    .responsive-table th,
    .responsive-table td {
        padding: .75em;
    }
}

.responsive-table caption {
    margin-bottom: 1em;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
}

@media (min-width: 48em) {
    .responsive-table caption {
        font-size: 1.5em;
    }
}

.responsive-table tfoot {
    font-size: .8em;
    font-style: italic;
}

@media (min-width: 62em) {
    .responsive-table tfoot {
        font-size: .9em;
    }
}

@media (min-width: 48em) {
    .responsive-table tbody {
        display: table-row-group;
    }
}

.responsive-table tbody tr {
    margin-bottom: 2em;
    border-bottom: 3px solid #3c3c3c;
}

@media (min-width: 48em) {
    .responsive-table tbody tr {
        display: table-row;
        border-width: 0;
    }
}

.responsive-table tbody tr:last-of-type {
    margin-bottom: 0;
}

@media (min-width: 48em) {
    .responsive-table tbody tr:nth-of-type(even) {
        background-color: rgba(94, 93, 82, 0.1);
    }
}

.responsive-table tbody th[scope="row"] {
    background-color: #3c3c3c;
    color: white;
}

@media (min-width: 48em) {
    .responsive-table tbody th[scope="row"] {
        background-color: transparent;
        color: #5e5d52;
        text-align: left;
    }
}

.responsive-table tbody td {
    text-align: right;
}

@media (min-width: 30em) {
    .responsive-table tbody td {
        border-bottom: 0 solid #3c3c3c;
    }
}

@media (min-width: 48em) {
    .responsive-table tbody td {
        text-align: center;
    }
}

.responsive-table tbody td[data-type=currency] {

}

.responsive-table tbody td[data-title]:before {
    content: attr(data-title);
    float: left;
    font-size: .8em;
    color: rgba(94, 93, 82, 0.75);
}

@media (min-width: 30em) {
    .responsive-table tbody td[data-title]:before {
        font-size: .9em;
    }
}

@media (min-width: 48em) {
    .responsive-table tbody td[data-title]:before {
        content: none;
    }
}

address {
    font-weight: normal;
}

.footer-menu a {
    display: block;
}

.right-inner-addon input,
.right-inner-addon textarea {
    padding-right: 36px;
}

.right-inner-addon i.right-icon {
    right: 0;
    top: 0;
}

#theForm .has-error i {
    color: #B94A48 !important;
}

#theForm {
    margin-top: 20px;
}

.birthday-picker .help-block, .radio-group .help-block {
    display: none;
}

.birthday-picker.has-error .real-error, .radio-group.has-error .real-error {
    display: block;
    margin-top: 0;
}

#share-buttons a {
    width: 32px;
    height: 32px;
    background: #FFF;
    text-decoration: none;
    display: block;
    padding: 6px 3px;
}

#share-buttons a:hover i {
    color: #fff;
}

#share-buttons .share-facebook i {
    color: #3b5998;
}

#share-buttons .share-google-plus i {
    color: #dc4e41;
}

#share-buttons .share-likedin i {
    color: #0077b5;
}

#share-buttons .share-twitter:hover {
    background: #55acee;
}

#share-buttons .share-facebook:hover {
    background: #3b5998;
}

#share-buttons .share-google-plus:hover {
    background: #dc4e41;
}

#share-buttons .share-likedin:hover {
    background: #0077b5;
}

#share-buttons .share-twitter i {
    color: #55acee;
}

.desc img {
    float: left;
    margin: 0 !important;
    display: inline-block;
}

.descr {
    font-family: inherit;
    font-size: 14px;
    line-height: 20px;
}

.left-shd, .right-shd {
    display: inline-block;
    margin: 0;
    float: left;
}

.main-shd {
    display: inline-block;
    float: left;
}

.premiu {
    margin: 0 auto;
    text-align: center;
    width: 318px;
}

@media all and (max-width: 388px) {
    .left-shd, .right-shd {
        display: none;
    }

    .premiu {
        width: 100%;
    }
}

/* ---------------- FORM STYLE ---------------------*/
.cd-form {

}

.cd-form::after {
    clear: both;
    content: "";
    display: table;
}

.cd-form fieldset {
    margin: 0;
}

.cd-form legend {
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 2rem;
    border-bottom: 1px solid #ecf0f1;
}

.cd-form div {
    /* form element wrapper */
    position: relative;
}

.cd-form h4, .cd-form .cd-label {
    font-size: 1.3rem;
    color: #94aab0;
    margin-bottom: 10px;
    font-weight: normal;
}

.cd-form .cd-label {
    display: block;
}

.cd-form input, .cd-form textarea, .cd-form label {
    font-family: inherit;
    font-size: 12px;
    line-height: 14px;
    color: #2b3e51;
    padding: 3px;
}

.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form input[type="tel"],
.cd-form input[type="number"],
.cd-form textarea,
.cd-form legend {
    display: block;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form input[type="tel"],
.cd-form input[type="number"],
.cd-form textarea {
    /* general style for input elements */
    padding: 12px 36px;
    border: 1px solid #cfd9db;
    background-color: #ffffff;
    border-radius: .25em;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}

.cd-form input[type="text"]:focus,
.cd-form input[type="email"]:focus,
.cd-form input[type="tel"]:focus,
.cd-form input[type="number"]:focus,
.cd-form textarea:focus,
.cd-form select:focus {
    outline: none;
    border-color: #2c97de;
    box-shadow: 0 0 5px rgba(44, 151, 222, 0.2);
}

.cd-form .cd-select {
    /* select element wapper */
    position: relative;
}

.cd-form .cd-select::after {
    /* arrow icon for select element */
    content: '';
    position: absolute;
    z-index: 1;
    right: 16px;
    top: 50%;
    margin-top: -8px;
    display: block;
    width: 16px;
    height: 16px;
    background: url("../img/cd-icon-arrow.svg") no-repeat center center;
    pointer-events: none;
}

.cd-form select {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.cd-form select::-ms-expand {
    display: none;
}

.cd-form .cd-form-list {
    margin-top: 16px;
}

.cd-form .cd-form-list::after {
    clear: both;
    content: "";
    display: table;
}

.cd-form .cd-form-list li {
    /* wrapper for radio and checkbox input types */
    display: inline-block;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0 26px 16px 0;
    float: left;
}

.cd-form input[type=radio],
.cd-form input[type=checkbox] {
    /* hide original check and radio buttons */
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    opacity: 0;
    z-index: 2;
}

.cd-form input[type="radio"] + label {
    padding-left: 7px;
}

.cd-form input[type="checkbox"] + label {
    padding-left: 20px;
}

.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after {
    /* custom radio and check boxes */
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
    width: 16px;
    height: 16px;
}

.cd-form input[type="radio"] + label::before,
.cd-form input[type="checkbox"] + label::before {
    border: 1px solid #cfd9db;
    background: #ffffff;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}

.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after {
    border-radius: 50%;
}

.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after {
    border-radius: .25em;
}

.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::after {
    background-color: #2c97de;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 0 0 5px rgba(44, 151, 222, 0.4);
    display: none;
}

.cd-form input[type="radio"] + label::after {
    /* custom image for radio button */

}

.cd-form input[type="checkbox"] + label::after {
    /* custom image for checkbox */

}

.cd-form input[type="radio"]:focus + label::before,
.cd-form input[type="checkbox"]:focus + label::before {
    /* add focus effect for radio and check buttons */
    box-shadow: 0 0 5px rgba(44, 151, 222, 0.6);
}

.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::after {
    display: block;
}

.cd-form input[type="radio"]:checked + label::before,
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::before,
.cd-form input[type="checkbox"]:checked + label::after {
    -webkit-animation: cd-bounce 0.3s;
    -moz-animation: cd-bounce 0.3s;
    animation: cd-bounce 0.3s;
}

.cd-form textarea {
    min-height: 120px;
    resize: vertical;
    overflow: auto;
}

.cd-form input[type="submit"] {
    /* button style */
    border: none;
    background: #2c97de;
    border-radius: .25em;
    padding: 16px 20px;
    color: #ffffff;
    font-weight: bold;
    float: right;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.no-touch .cd-form input[type="submit"]:hover {
    background: #42a2e1;
}

.cd-form input[type="submit"]:focus {
    outline: none;
    background: #2b3e51;
}

.cd-form input[type="submit"]:active {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
}

.cd-form [required] {
    background: url("../img/cd-required.svg") no-repeat top right;
}

.cd-form .error-message p {
    background: #e94b35;
    color: #ffffff;
    font-size: 1.4rem;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-radius: .25em;
    padding: 16px;
}

.cd-form .error {
    border-color: #e94b35 !important;
}

.btn-upload {
    height: 42px;
    border: 1px solid #6e6e6e;
    vertical-align: middle;
    padding: 14px !important;
}

.alert {
    margin-top: 10px;
    margin-bottom: 10px;
}

.bootstrap-filestyle {
    margin-bottom: 22px;
}

@media only screen and (min-width: 600px) {
    .cd-form div {
        /* form element wrapper */
    }

    .cd-form legend + div {
        /* reduce margin-top for first form element after the legend */
        margin-top: 20px;
    }

    .cd-form h4, .cd-form .cd-label {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .cd-form input[type="text"],
    .cd-form input[type="email"],
    .cd-form input[type="tel"],
    .cd-form input[type="number"] {
        padding: 0px 30px;
        font-size: 1em;
        box-shadow: none;
        -webkit-box-shadow: none;
        height: 42px;
    }

    .cd-form select {
        padding: 5px 34px;
        font-size: 1em;
        height: 41px;
        -webkit-appearance: none;
    }

    .cd-form textarea {
        padding: 10px 32px;
        font-size: 1em;
    }

    .btn-upload {
        height: 42px;
    }
}

@-webkit-keyframes cd-bounce {
    0%, 100% {
        -webkit-transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.8);
    }
}

@-moz-keyframes cd-bounce {
    0%, 100% {
        -moz-transform: scale(1);
    }
    50% {
        -moz-transform: scale(0.8);
    }
}

@keyframes cd-bounce {
    0%, 100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -ms-transform: scale(0.8);
        -o-transform: scale(0.8);
        transform: scale(0.8);
    }
}

/* --------------------------------

FLoating labels

-------------------------------- */
.js .floating-labels div {
}

.js .floating-labels .cd-label {
    position: absolute;
    top: 12px;
    left: 34px;
    font-size: 1rem;
    cursor: text;
    -webkit-transition: top 0.07s, left 0.07s, font-size 0.07s;
    -moz-transition: top 0.07s, left 0.07s, font-size 0.07s;
    transition: top 0.07s, left 0.07s, font-size 0.07s;
}

.js .floating-labels .icon .cd-label {
    left: 56px;
}

.js .floating-labels .cd-label.float {
    /* move label out the input field */
    font-size: 0.8rem;
    top: -18px;
    left: 0 !important;
}

@media only screen and (min-width: 600px) {
    .js .floating-labels legend + div {
        /* reduce margin-top for first form element after the legend */
        margin-top: 16px;
    }

    .js .floating-labels .cd-label {
        top: 12px;
    }
}

option:first {
    color: #999;
}

#mobile {
    border-radius: 4px;
}

/* ---------------- END FORM STYLE ----------------*/
#table {
    font-family: inherit;
}

.top_holder {
    display: block !important;
    padding-top: 10px !important;
    font-size: 12px;
}

.intro {
    float: left;
    padding-right: 20px;
    font-size: 18px;
    line-height: 20px;
}

.radio.radio-inline {
    margin-top: 12px;
}

@-moz-document url-prefix() {
    .radio.radio-inline {
        margin-top: 12px;
    }
}

.help-block {
    margin-bottom: 20px;
    margin-top: -20px;
    font-size: 12px;
}

#mobile {
    padding: 10px 30px;
    font-size: 1em;
    box-shadow: none;
    -webkit-box-shadow: none;
}

#formSubmitter {
    margin-top: 10px;
}

.fixed-table-container tbody td {
    border: 0
}

select {
    margin-bottom: 24px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .radio.radio-inline {
        margin-top: 10px;
    }
}

.alert-danger {
    text-align: center;
    padding: 30px;
    background: #F0F0F0;
    border: 1px solid #DDDDDD;;
}

.cd-form .has-error input, .col-md-6.col-xs-12.has-error .bootstrap-filestyle.input-group .group-span-filestyle.input-group-btn label.btn {
    border-color: #e94b35 !important;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #6e6e6e;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #6e6e6e;
    z-index: 10000;
}

:-ms-input-placeholder { /* IE 10+ */
    color: #6e6e6e;
    z-index: 10000;
}

:-moz-placeholder { /* Firefox 18- */
    color: #6e6e6e;
    z-index: 10000;
}

/* =============== SECTIONS ======================*/
/* =============== ANIMATION BASE ================*/
/*animations*/

/******************
* Bounce in right *
*******************/

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

.slow {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.slower {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.slowest {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* Added by Andy Meetan */
.delay-250 {
    -webkit-animation-delay: 0.25s;
    -moz-animation-delay: 0.25s;
    -o-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

.delay-500 {
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.delay-750 {
    -webkit-animation-delay: 0.75s;
    -moz-animation-delay: 0.75s;
    -o-animation-delay: 0.75s;
    animation-delay: 0.75s;
}

.delay-1000 {
    -webkit-animation-delay: 1.0s;
    -moz-animation-delay: 1.0s;
    -o-animation-delay: 1.0s;
    animation-delay: 1.0s;
}

.delay-1250 {
    -webkit-animation-delay: 1.25s;
    -moz-animation-delay: 1.25s;
    -o-animation-delay: 1.25s;
    animation-delay: 1.25s;
}

.delay-1500 {
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
    -o-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.delay-1750 {
    -webkit-animation-delay: 1.75s;
    -moz-animation-delay: 1.75s;
    -o-animation-delay: 1.75s;
    animation-delay: 1.75s;
}

.delay-2000 {
    -webkit-animation-delay: 2.0s;
    -moz-animation-delay: 2.0s;
    -o-animation-delay: 2.0s;
    animation-delay: 2.0s;
}

.delay-2500 {
    -webkit-animation-delay: 2.5s;
    -moz-animation-delay: 2.5s;
    -o-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.delay-2000 {
    -webkit-animation-delay: 2.0s;
    -moz-animation-delay: 2.0s;
    -o-animation-delay: 2.0s;
    animation-delay: 2.0s;
}

.delay-2500 {
    -webkit-animation-delay: 2.5s;
    -moz-animation-delay: 2.5s;
    -o-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.delay-3000 {
    -webkit-animation-delay: 3.0s;
    -moz-animation-delay: 3.0s;
    -o-animation-delay: 3.0s;
    animation-delay: 3.0s;
}

.delay-3500 {
    -webkit-animation-delay: 3.5s;
    -moz-animation-delay: 3.5s;
    -o-animation-delay: 3.5s;
    animation-delay: 3.5s;
}

.bounceInRight, .bounceInLeft, .bounceInUp, .bounceInDown {
    opacity: 0;
    -webkit-transform: translateX(400px);
    transform: translateX(400px);
}

.fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {
    opacity: 0;
    -webkit-transform: translateX(400px);
    transform: translateX(400px);
}

.flipInX, .flipInY, .rotateIn, .rotateInUpLeft, .rotateInUpRight, .rotateInDownLeft, .rotateDownUpRight, .rollIn {
    opacity: 0;
}

.lightSpeedInRight, .lightSpeedInLeft {
    opacity: 0;
    -webkit-transform: translateX(400px);
    transform: translateX(400px);
}

/***********
* bounceIn *
************/
@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(.9);
    }

    100% {
        transform: scale(1);
    }
}

.bounceIn.go {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

/****************
* bounceInRight *
****************/

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;

        -webkit-transform: translateX(400px);
    }
    60% {

        -webkit-transform: translateX(-30px);
    }
    80% {
        -webkit-transform: translateX(10px);
    }
    100% {
        opacity: 1;

        -webkit-transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;

        transform: translateX(400px);
    }
    60% {

        transform: translateX(-30px);
    }
    80% {
        transform: translateX(10px);
    }
    100% {
        opacity: 1;

        transform: translateX(0);
    }
}

.bounceInRight.go {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

/******************
* Bounce in left *
*******************/

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;

        -webkit-transform: translateX(-400px);
    }
    60% {

        -webkit-transform: translateX(30px);
    }
    80% {
        -webkit-transform: translateX(-10px);
    }
    100% {
        opacity: 1;

        -webkit-transform: translateX(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;

        transform: translateX(-400px);
    }
    60% {

        transform: translateX(30px);
    }
    80% {
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;

        transform: translateX(0);
    }
}

.bounceInLeft.go {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

/******************
* Bounce in up *
*******************/

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;

        -webkit-transform: translateY(400px);
    }
    60% {

        -webkit-transform: translateY(-30px);
    }
    80% {
        -webkit-transform: translateY(10px);
    }
    100% {
        opacity: 1;

        -webkit-transform: translateY(0);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;

        transform: translateY(400px);
    }
    60% {

        transform: translateY(-30px);
    }
    80% {
        transform: translateY(10px);
    }
    100% {
        opacity: 1;

        transform: translateY(0);
    }
}

.bounceInUp.go {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

/******************
* Bounce in down *
*******************/

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;

        -webkit-transform: translateY(-400px);
    }
    60% {

        -webkit-transform: translateY(30px);
    }
    80% {
        -webkit-transform: translateY(-10px);
    }
    100% {
        opacity: 1;

        -webkit-transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;

        transform: translateY(-400px);
    }
    60% {

        transform: translateY(30px);
    }
    80% {
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;

        transform: translateY(0);
    }
}

.bounceInDown.go {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

/**********
* Fade In *
**********/
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        display: block;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        display: block;
    }
}

.fadeIn {
    opacity: 0;
}

.fadeIn.go {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

/**********
* Grow in *
***********/

@-webkit-keyframes growIn {
    0% {
        -webkit-transform: scale(0.2);
        opacity: 0;
    }
    50% {
        -webkit-transform: scale(1.2);

    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@keyframes growIn {
    0% {
        transform: scale(0.2);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);

    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.growIn {

    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 0;
}

.growIn.go {
    -webkit-animation-name: growIn;
    animation-name: growIn;
}

/********
* Shake *
********/
@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

.shake.go {
    -webkit-animation-name: shake;
    animation-name: shake;
}

/********
* ShakeUp *
********/
@-webkit-keyframes shakeUp {
    0%, 100% {
        -webkit-transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateY(-10px);
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translateY(10px);
    }
}

@keyframes shakeUp {
    0%, 100% {
        transform: translateY(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateY(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateY(10px);
    }
}

.shakeUp.go {
    -webkit-animation-name: shakeUp;
    animation-name: shakeUp;
}

/*************
* FadeInLeft *
*************/

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-400px);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-400px);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInLeft {
    opacity: 0;
    -webkit-transform: translateX(-400px);
    transform: translateX(-400px);
}

.fadeInLeft.go {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

/*************
* FadeInRight *
*************/

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(400px);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(400px);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInRight {
    opacity: 0;
    -webkit-transform: translateX(400px);
    transform: translateX(400px);
}

.fadeInRight.go {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

/*************
* FadeInUp *
*************/

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(400px);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(400px);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    opacity: 0;
    -webkit-transform: translateY(400px);
    transform: translateY(400px);
}

.fadeInUp.go {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

/*************
* FadeInDown *
*************/

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-400px);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-400px);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDown {
    opacity: 0;
    -webkit-transform: translateY(-400px);
    transform: translateY(-400px);
}

.fadeInDown.go {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

/*****************
* rotateIn *
*****************/
@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        transform-origin: center center;
        transform: rotate(-200deg);
        opacity: 0;
    }
    100% {
        transform-origin: center center;
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateIn.go {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

/*****************
* rotateInUpLeft *
*****************/

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0deg);
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        transform-origin: left bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
}

.rotateInUpLeft.go {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

/*******************
* rotateInDownLeft *
*******************/
@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInDownLeft.go {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

/******************
* rotateInUpRight *
*******************/

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInUpRight.go {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

/********************
* rotateInDownRight *
********************/

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInDownRight.go {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

/*********
* rollIn *
**********/

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translateX(-100%) rotate(-120deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg);
    }
}

.rollIn.go {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

/*********
* wiggle *
**********/

@-webkit-keyframes wiggle {
    0% {
        -webkit-transform: skewX(9deg);
    }
    10% {
        -webkit-transform: skewX(-8deg);
    }
    20% {
        -webkit-transform: skewX(7deg);
    }
    30% {
        -webkit-transform: skewX(-6deg);
    }
    40% {
        -webkit-transform: skewX(5deg);
    }
    50% {
        -webkit-transform: skewX(-4deg);
    }
    60% {
        -webkit-transform: skewX(3deg);
    }
    70% {
        -webkit-transform: skewX(-2deg);
    }
    80% {
        -webkit-transform: skewX(1deg);
    }
    90% {
        -webkit-transform: skewX(0deg);
    }
    100% {
        -webkit-transform: skewX(0deg);
    }
}

@keyframes wiggle {
    0% {
        transform: skewX(9deg);
    }
    10% {
        transform: skewX(-8deg);
    }
    20% {
        transform: skewX(7deg);
    }
    30% {
        transform: skewX(-6deg);
    }
    40% {
        transform: skewX(5deg);
    }
    50% {
        transform: skewX(-4deg);
    }
    60% {
        transform: skewX(3deg);
    }
    70% {
        transform: skewX(-2deg);
    }
    80% {
        transform: skewX(1deg);
    }
    90% {
        transform: skewX(0deg);
    }
    100% {
        transform: skewX(0deg);
    }
}

.wiggle.go {
    -webkit-animation-name: wiggle;
    animation-name: wiggle;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

/********
* swing *
*********/

@-webkit-keyframes swing {
    20%, 40%, 60%, 80%, 100% {
        -webkit-transform-origin: top center;
    }
    20% {
        -webkit-transform: rotate(15deg);
    }
    40% {
        -webkit-transform: rotate(-10deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
    }
    80% {
        -webkit-transform: rotate(-5deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}

@keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

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

/*******
* tada *
********/

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
    }
    10%, 20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
    }
}

@keyframes tada {
    0% {
        transform: scale(1);
    }
    10%, 20% {
        transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        transform: scale(1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

.tada.go {
    -webkit-animation-name: tada;
    animation-name: tada;
}

/*********
* wobble *
**********/

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
    }
    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
    }
    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
    }
    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        -webkit-transform: translateX(0%);
    }
}

@keyframes wobble {
    0% {
        transform: translateX(0%);
    }
    15% {
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        transform: translateX(0%);
    }
}

.wobble.go {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

/********
* pulse *
*********/

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.pulse.go {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

/***************
* lightSpeedInRight *
****************/
@-webkit-keyframes lightSpeedInRight {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

@keyframes lightSpeedInRight {
    0% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
    60% {
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }
    80% {
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }
    100% {
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

.lightSpeedInRight.go {
    -webkit-animation-name: lightSpeedInRight;
    animation-name: lightSpeedInRight;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

/***************
* lightSpeedInLeft *
****************/
@-webkit-keyframes lightSpeedInLeft {
    0% {
        -webkit-transform: translateX(-100%) skewX(30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: translateX(20%) skewX(-30deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: translateX(0%) skewX(15deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

@keyframes lightSpeedInLeft {
    0% {
        transform: translateX(-100%) skewX(30deg);
        opacity: 0;
    }
    60% {
        transform: translateX(20%) skewX(-30deg);
        opacity: 1;
    }
    80% {
        transform: translateX(0%) skewX(15deg);
        opacity: 1;
    }
    100% {
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

.lightSpeedInLeft.go {
    -webkit-animation-name: lightSpeedInLeft;
    animation-name: lightSpeedInLeft;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

/*******
* Flip *
*******/
@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(0);
        -webkit-animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
        -webkit-animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
    }
    100% {
        -webkit-transform: perspective(400px) scale(1);
        -webkit-animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(0);
        animation-timing-function: ease-out;
    }
    40% {
        transform: perspective(400px) translateZ(150px) rotateY(170deg);
        animation-timing-function: ease-out;
    }
    50% {
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        animation-timing-function: ease-in;
    }
    80% {
        transform: perspective(400px) rotateY(360deg) scale(.95);
        animation-timing-function: ease-in;
    }
    100% {
        transform: perspective(400px) scale(1);
        animation-timing-function: ease-in;
    }
}

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

/**********
* flipInX *
**********/
@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        transform: perspective(400px) rotateX(10deg);
    }
    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

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

/**********
* flipInY *
**********/

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateY(-10deg);
    }
    70% {
        transform: perspective(400px) rotateY(10deg);
    }
    100% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

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

/*****************
* Out animations *
*****************/

/************
* bounceOut *
*************/
@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
    }
    25% {
        -webkit-transform: scale(.95);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
    }
}

@keyframes bounceOut {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(.3);
    }
}

.bounceOut.goAway {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

/************
* bounceOutUp *
*************/
@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }
}

@keyframes bounceOutUp {
    0% {
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        transform: translateY(20px);
    }
    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

.bounceOutUp.goAway {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

/************
* bounceOutDown *
*************/
@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }
}

@keyframes bounceOutDown {
    0% {
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        transform: translateY(-20px);
    }
    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

.bounceOutDown.goAway {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

/************
* bounceOutLeft *
*************/
@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }
}

@keyframes bounceOutLeft {
    0% {
        transform: translateX(0);
    }
    20% {
        opacity: 1;
        transform: translateX(20px);
    }
    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

.bounceOutLeft.goAway {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

/************
* bounceOutRight *
*************/
@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }
}

@keyframes bounceOutRight {
    0% {
        transform: translateX(0);
    }
    20% {
        opacity: 1;
        transform: translateX(-20px);
    }
    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

.bounceOutRight.goAway {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

/************
* fadeOut *
*************/
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.fadeOut.goAway {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

/************
* fadeOutUp *
*************/
@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

.fadeOutUp.goAway {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

/************
* fadeOutDown *
*************/
@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

.fadeOutDown.goAway {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

/************
* fadeOutLeft *
*************/
@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

.fadeOutLeft.goAway {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

/************
* fadeOutRight *
*************/
@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

.fadeOutRight.goAway {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

/************
* flipOutX *
*************/
@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

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

/************
* flipOutY *
*************/
@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

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

/************
* lightSpeedOutRight *
*************/
@-webkit-keyframes lightSpeedOutRight {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOutRight {
    0% {
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
    100% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

.lightSpeedOutRight.goAway {
    -webkit-animation-name: lightSpeedOutRight;
    animation-name: lightSpeedOutRight;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

/************
* lightSpeedOutLeft *
*************/
@-webkit-keyframes lightSpeedOutLeft {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(-100%) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOutLeft {
    0% {
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%) skewX(30deg);
        opacity: 0;
    }
}

.lightSpeedOutLeft.goAway {
    -webkit-animation-name: lightSpeedOutLeft;
    animation-name: lightSpeedOutLeft;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;

}

/************
* rotateOut *
*************/
@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        transform-origin: center center;
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        transform-origin: center center;
        transform: rotate(200deg);
        opacity: 0;
    }
}

.rotateOut.goAway {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

/************
* rotateOutUpLeft *
*************/
@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -transform-origin: left bottom;
        -transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutUpLeft.goAway {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

/************
* rotateOutDownLeft *
*************/

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutDownLeft.goAway {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

/************
* rotateOutUpRight *
*************/

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutUpRight.goAway {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

/************
* rollOut *
*************/
@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateX(100%) rotate(120deg);
    }
}

.rollOut.goAway {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

/*****************
* Short Animations
*******************/

/*********************
* fadeInUpShort
*********************/
@-webkit-keyframes fadeInUpShort {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInUpShort {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUpShort {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
}

.fadeInUpShort.go {
    -webkit-animation-name: fadeInUpShort;
    animation-name: fadeInUpShort;
}

/*********************
* fadeInDownShort
*********************/
@-webkit-keyframes fadeInDownShort {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInDownShort {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDownShort {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
}

.fadeInDownShort.go {
    -webkit-animation-name: fadeInDownShort;
    animation-name: fadeInDownShort;
}

/*********************
* fadeInRightShort
*********************/
@-webkit-keyframes fadeInRightShort {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInRightShort {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInRightShort {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
}

.fadeInRightShort.go {
    -webkit-animation-name: fadeInRightShort;
    animation-name: fadeInRightShort;
}

/*********************
* fadeInLeftShort
*********************/
@-webkit-keyframes fadeInLeftShort {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInLeftShort {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInLeftShort {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
}

.fadeInLeftShort.go {
    -webkit-animation-name: fadeInLeftShort;
    animation-name: fadeInLeftShort;
}

/* =============== ANIMATIONS BASE END ==========*/
/* =============== TESTIMONIALS START ===========*/
#testimonials {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background-attachment: fixed;
    position: relative;
}

#calltoaction {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 100px 0;
    background-attachment: fixed;
    background-size: cover !important;
    position: relative;
}

.before-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-indicators .active {
    background: #31708f;
}

.adjust1 {
    float: left;
    width: 100%;
    margin-bottom: 0;
    border: 0;
}

.adjust2 {
    margin: 0;
}

blockquote p {
    font-style: italic;
}

.text-info {
    margin: 20px auto;
}

.carousel-indicators li {
    border: 1px solid #ccc;
}

.carousel-control {
    color: #31708f;
    width: 5%;
}

.carousel-control:hover, .carousel-control:focus {
    color: #31708f;
}

.carousel-control.left, .carousel-control.right {
    background-image: none;
}

.media-object {
    margin: 15% auto auto;
}

.carousel-indicators {
    bottom: -20px;
}

.caption p:nth-child(2) {
    color: #FFFFFF;
}

.thumbnail {
    background: none;
}

@media screen and (max-width: 768px) {
    .media-object {
        margin-top: 0;
    }
}

span.quote-img img {
    width: 30px;
    height: auto;
    padding: 10px;
    opacity: 0.5;
}

/* =============== TESTIMONIALS END ===========*/
/* =============== SECTIONS ABOUT ================*/
#about-1, #about-2, #about-3 {
    width: 100%;
    text-align: center;
}

#about-1 .container .about-title, #about-2 .container .about-title, #about-3 .container .about-title {
    margin: 50px auto;
    max-width: 700px;
    line-height: 18px;
}

#about-1 .container .about-title .border, #about-2 .container .about-title .border, #about-3 .container .about-title .border {
    background: none repeat scroll 0 0 #999999;
    display: block;
    height: 2px;
    width: 100px;
    margin: 0 auto 40px;
}

@media all and (max-width: 768px) {
    #about-1 .container .about-title h1, #about-2 .container .about-title h1, #about-3 .container .about-title h1 {
        font-size: 20px;
        text-transform: uppercase;
        margin-bottom: 30px;
        text-align: center;
    }
}

@media all and (min-width: 768px) {
    #about-1 .container .about-title h1, #about-2 .container .about-title h1, #about-3 .container .about-title h1 {
        font-size: 30px;
        text-transform: uppercase;
        margin-bottom: 30px;
        text-align: center;
    }
}

#about-1 .container .about-title p,
#about-2 .container .about-title p,
#about-3 .container .about-title p {
    margin-bottom: 15px;
    text-align: center;
}

#about-1 img, #about-2 img, #about-3 img {
    margin: 0 auto;
}

/* ================ FEATURES ================ */
@media all and (max-width: 768px) {
    .section-title-features h1 {
        font-size: 18px;
        margin: 10px auto;
    }
}

@media all and (min-width: 768px) {
    .section-title-features h1 {
        font-size: 30px;
        margin: 15px auto;
    }
}

.section-title-features {
    text-align: center
}

.features-sub {
    font-size: 18px;
    margin-bottom: 20px;
}

.back-icon {
    z-index: -1;
    color: #F0F0F0;
    position: absolute;
    padding-left: 40px;
    left: 0;
    top: 0;
    width: 144px;
    height: 144px;
    line-height: 144px;
    font-size: 144px;
}

.features-info {
    padding-left: 50px;
    padding-top: 0;
}

.features-info h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.features-icon {
    float: left;
    margin-top: -7px;
}

.features-row {
    margin-bottom: 70px;
}

.features-description {
    font-size: 14px;
    line-height: 18px;
    max-width: 400px;
}

/* =========== GALLERY SECTION ============*/
.OverlayIcon {
    position: relative;
    top: -15px;
    left: -122px;
}

.OverlayIcon:hover {
    cursor: pointer;
}

#links {
    padding: 0 35px;
}

#links .video {
    margin-right: -59px;
}

#gallery {
    margin: 50px auto;
    text-align: center;
}

@media all and (max-width: 768px) {
    #gallery h1 {
        font-size: 18px;
        margin: 10px auto;
    }
}

@media all and (min-width: 768px) {
    #gallery h1 {
        font-size: 30px;
        margin: 15px auto;
    }
}

#links a {
    margin-right: 5px;
    margin-bottom: 5px;
}

#links a:hover {
    text-decoration: none;
}

/* --------------------------------

Slider

-------------------------------- */
@media all and (min-width: 1170px) {
    .fa-slider {
        font-size: 1.7em;
        padding: 15px;
    }
}

@media all and (max-width: 1169px) {
    .fa-slider {
        font-size: 1.2em;
        padding: 10px;
    }
}

.fa-slider:hover {
    color: #101010;
}

.cd-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    /* hide horizontal scrollbar on IE11 */
    overflow: hidden;
    margin-top: -160px;
}

.cd-slider-wrapper .cd-slider, .cd-slider-wrapper .cd-slider > li {
    height: 100%;
    width: 100%;
}

.cd-slider > li {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    /* used to vertically center its content */
    display: table;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cd-slider > li.visible {
    /* selected slide */
    position: relative;
    opacity: 1;
}

.cd-slider > li {
    background-size: cover;
}

.cd-slider > li > div {
    /* vertically center the slider content */
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.cd-slider > li h2, .cd-slider > li p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    margin: 0 auto 14px;
    color: #ffffff;
    width: 90%;
    max-width: 320px;
}

.cd-slider > li h2 {
    font-size: 2.4rem;
}

.cd-slider > li p {
    font-size: 1.4rem;
    line-height: 1.4;
}

.cd-slider > li .cd-btn {
    display: inline-block;
    padding: 1.2em 1.4em;
    margin-top: .8em;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: .25em;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

.no-touch .cd-slider > li .cd-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media only screen and (min-width: 768px) {
    .cd-slider > li h2, .cd-slider > li p {
        max-width: 520px;
    }

    .cd-slider > li h2 {
        font-size: 2.4em;
        font-weight: 300;
    }

    .cd-slider > li .cd-btn {
        font-size: 1.4rem;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-slider > li h2, .cd-slider > li p {
        margin-bottom: 0;
        padding-bottom: 20px;
    }

    .cd-slider > li h2 {
        font-size: 3.2em;
        border-radius: 6px 6px 0 0;
        padding: 0 20px 20px;
    }

    .cd-slider > li h2 span {
        padding: 0 5px;
    }

    .cd-slider > li p {
        font-size: 1.8rem;
        border-radius: 0 0 6px 6px;
        padding: 0 10px 10px;
    }

    .cd-slider > li p span {
        padding: 0 5px;
    }
}

/* --------------------------------

Slider navigation

-------------------------------- */
.cd-slider-navigation {
    position: absolute;
    bottom: 0;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    width: 90%;
}

.cd-slider-navigation::after {
    clear: both;
    content: "";
    display: table;
}

.cd-slider-navigation li {
    display: inline-block;
    margin-right: 20px;
}

.cd-slider-navigation li:last-of-type {
    margin-right: 0;
}

.cd-slider-navigation a {
    display: block;
    position: relative;
    height: 40px;
    width: 40px;
    background: url(../img/cd-icon-navigation.svg) no-repeat -10px -10px;
    border-radius: 50%;
    background-color: #ffffff;
    -webkit-box-shadow: 2px 2px 22px -8px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 2px 2px 22px -8px rgba(0, 0, 0, 0.75);
    box-shadow: 2px 2px 22px -8px rgba(0, 0, 0, 0.75);
}

.no-touch .cd-slider-navigation a:hover em {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: opacity 0.2s 0s, visibility 0s 0s, -webkit-transform 0.2s 0s;
    -moz-transition: opacity 0.2s 0s, visibility 0s 0s, -moz-transform 0.2s 0s;
    transition: opacity 0.2s 0s, visibility 0s 0s, transform 0.2s 0s;
}

.cd-slider-navigation li.selected:first-of-type a {
    /* change custom icon using image sprites */
    background-position: -10px -70px;
}

.cd-slider-navigation li:nth-of-type(2) a {
    background-position: -70px -10px;
}

.cd-slider-navigation li.selected:nth-of-type(2) a {
    background-position: -70px -70px;
}

.cd-slider-navigation li:nth-of-type(3) a {
    background-position: -130px -10px;
}

.cd-slider-navigation li.selected:nth-of-type(3) a {
    background-position: -130px -70px;
}

.cd-slider-navigation li:nth-of-type(4) a {
    background-position: -190px -10px;
}

.cd-slider-navigation li.selected:nth-of-type(4) a {
    background-position: -190px -70px;
}

.cd-slider-navigation em {
    /* tooltip visible on hover */
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    padding: 8px 10px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.7);
    white-space: nowrap;
    font-size: 1.3rem;
    border-radius: 2px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(3px);
    -moz-transform: translateX(-50%) translateY(3px);
    -ms-transform: translateX(-50%) translateY(3px);
    -o-transform: translateX(-50%) translateY(3px);
    transform: translateX(-50%) translateY(3px);
    -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s, -webkit-transform 0.2s 0s;
    -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s, -moz-transform 0.2s 0s;
    transition: opacity 0.2s 0s, visibility 0s 0.2s, transform 0.2s 0s;
}

.cd-slider-navigation em::after {
    /* tooltip arrow */
    content: '';
    position: absolute;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -10px;
    height: 0;
    width: 0;
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.7);
}

@media only screen and (min-width: 1170px) {
    .cd-slider-navigation a {
        height: 60px;
        width: 60px;
    }

    .cd-slider-navigation li:first-of-type a {
        /* change custom icon using image sprites */
        background-position: 0 0px;
    }

    .cd-slider-navigation li.selected:first-of-type a {
        /* change custom icon using image sprites */
        background-position: 0 -60px;
    }

    .cd-slider-navigation li:nth-of-type(2) a {
        background-position: -60px 0;
    }

    .cd-slider-navigation li.selected:nth-of-type(2) a {
        background-position: -60px -60px;
    }

    .cd-slider-navigation li:nth-of-type(3) a {
        background-position: -120px 0;
    }

    .cd-slider-navigation li.selected:nth-of-type(3) a {
        background-position: -120px -60px;
    }

    .cd-slider-navigation li:nth-of-type(4) a {
        background-position: -180px 0;
    }

    .cd-slider-navigation li.selected:nth-of-type(4) a {
        background-position: -180px -60px;
    }
}

/* --------------------------------

svg cover layer

-------------------------------- */
.cd-svg-cover {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
}

.cd-svg-cover svg {
    margin-top: -16px;
}

.cd-svg-cover path {
    fill: #ccc;
}

.cd-svg-cover.is-animating {
    z-index: 4;
    opacity: 1;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

#captcha {
    margin-bottom: 20px !important;
}

.features-icon.with_image img.img-responsive {
    max-width: 96px;
}

.features-info.with_image {
    padding-left: 118px;
}

.demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.3);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background-color .15s ease 0s;
    -o-transition: background-color .15s ease 0s;
    transition: background-color .15s ease 0s;
}

.demo-gallery-poster > img {
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: opacity .3s ease 0s;
    -o-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
}

.video .demo-gallery-poster img {
    height: 48px;
    margin-left: -24px;
    margin-top: -24px;
    opacity: .8;
    width: 48px;
}

#light-gallery .video {
    position: relative;
    display: inline-block;
}

.top_holder {
    line-height: 140% !important;
    font-size: 18px !important;
}

.radio.radio-inline {
    line-height: 0px;
}

.radio.radio-inline label {
    font-size: 16px;
}

#about-3 .container .about-title h1 {
    line-height: 100%;
}

#light-gallery a {
    margin: 2px;
}

#features6 .row:last-child .col-md-6:only-child {
    margin: 0 auto;
    float: none;
}

.slider-btn {
    max-width: 350px;
    margin: 0 auto;
    font-family: Lato, Calibri, Arial, sans-serif;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 4px;
    padding: 10px 50px;
    line-height: 24px;
    letter-spacing: 0;
    font-size: 16px;
    display: block;
    position: absolute;
    bottom: 75px;
    opacity: 1;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    width: 90%;
    background: #fff;
}

iframe[name=google_conversion_frame] {
    height: 0 !important;
    width: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    margin-top: -13px;
    float: left;
}

@media screen and (max-width: 768px) {
    .cd-slider-wrapper .cd-slider > li {
        padding-top: 70px;
    }

    .slider-btn, ol.cd-slider-navigation {
        display: none;
    }

    .cd-slider > li > div {
        vertical-align: top;
    }
}

.ios #testimonials, .ios #calltoaction, .ios #video_section, .ios .image-underlay-form {
    background-attachment: initial !important;
}

ul.cd-slider > li > div.with_cta {
    padding-bottom: 150px;
}

#video_section {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    height: 500px;
    width: 100%;
    min-width: 16px;
}

#video_section div {
    height: 100%;
}

#video_section .section-content {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
    text-align: center;
}

#video_section .container {
    display: table;
}

.image-underlay-form {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    padding: 45px 0
}

.image-underlay-form .container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px 15px;
}

.main-shd.video_container {
    position: relative;
}

.show-if[data-show-if-field] {
    display: none;
}

@media screen and (max-width: 375px) {
    #captcha-content > div {
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -o-transform: scale(0.8);
        -ms-transform: scale(0.8);
        float: left;
    }
}

label.datepicker-label {
    display: block;
    margin-top: -18px;
    margin-bottom: 0;
}

/* jango css begin*/

.c-content-tile-1 {
    overflow: hidden;
}

.c-bg-black {
    background-color: #000000 !important;
}

.c-content-tile-1 .c-tile-content {
    overflow: hidden;
}

.c-content-tile-1 .c-wrapper {
    padding: 10%;
}

.c-content-v-center .c-wrapper {
    display: table;
    height: 100%;
    width: 100%;
}

.c-content-v-center .c-wrapper .c-body {
    display: table-cell;
    vertical-align: middle;
}

.c-center, .c-font-center {
    text-align: center;
}

.c-content-tile-1 .c-wrapper .c-tile-title {
    color: #3f444a;
    font-size: 20px;
    margin-top: 0;
}

.c-font-white {
    color: #ffffff !important;
}

.c-line-height-34 {
    line-height: 34px;
}

.c-font-25 {
    font-size: 25px;
}

.c-font-uppercase {
    text-transform: uppercase;
}

.c-font-bold {
    font-weight: 600 !important;
}

.c-content-tile-1 .c-tile-content.c-arrow-black.c-arrow-right::after {
    border-left-color: #000000;
}

.c-content-tile-1 .c-tile-content.c-arrow-right::after {
    border-left-color: #ffffff;
    left: 0;
}

.c-content-tile-1 .c-tile-content.c-arrow-left::after, .c-content-tile-1 .c-tile-content.c-arrow-right::after {
    border: 13px solid transparent;
    content: " ";
    pointer-events: none;
    position: absolute;
    top: calc(50% - 13px);
    z-index: 99;
}

.c-content-tile-1 .c-tile-content.c-arrow-left, .c-content-tile-1 .c-tile-content.c-arrow-right {
    position: relative;
}

.c-content-tile-1 .c-tile-content {
    overflow: hidden;
}

.c-content-overlay {
    overflow: hidden;
    position: relative;
}

.c-content-overlay .c-overlay-wrapper::before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

*, *::after, *::before {
    box-sizing: border-box;
}

.c-content-overlay .c-overlay-wrapper::after {
    clear: both;
    content: "";
    display: table;
}

.c-content-overlay .c-overlay-wrapper {
    background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: -100%;
    transition: all 0.2s ease 0s;
    width: 100%;
    z-index: 3;
}

.c-content-overlay .c-overlay-wrapper .c-overlay-content {
    display: inline-block;
    height: auto;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    width: 95%;
}

.c-content-tile-1 .c-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("/assets/uploads/images/image-test.jpg");
    height: 251px;
}

.c-content-overlay .c-overlay-object {
    position: relative;
    z-index: 1;
}

.c-content-tile-1 .c-tile-content.c-arrow-black-2.c-arrow-left::after {
    border-right-color: #000000;
}

.c-content-tile-1 .c-tile-content.c-arrow-left::after {
    border-right-color: #ffffff;
    right: 0;
}

.c-content-tile-1 .c-tile-content.c-arrow-left, .c-content-tile-1 .c-tile-content.c-arrow-right {
    position: relative;
}

.c-content-tile-1 .c-tile-content {
    overflow: hidden;
}

.no-padd-l-r {
    padding-left: 0;
    padding-right: 0;
}

.c-content-tile-1 .c-wrapper .c-tile-body {
    font-size: 15px;
    line-height: 25px;
}

.c-content-tile-1 .c-wrapper .c-font-white {
    color: #ffffff;
}

@media screen and (max-width: 768px) {

    .c-content-tile-1 .c-tile-content.c-arrow-left::after, .c-content-tile-1 .c-tile-content.c-arrow-right::after {
        left: calc(50% - 13px);
    }

    .c-content-tile-1 .c-tile-content.c-arrow-right::after {
        border-left-color: transparent;
        border-top-color: #000000;
        top: 0;
    }

    .c-content-tile-1 .c-tile-content.c-arrow-black.c-arrow-right::after {
        border-left-color: transparent;
        border-top-color: #000000;
    }

    .c-content-tile-1 .c-tile-content.c-arrow-black-2.c-arrow-left::after {
        border-bottom-color: #000000;
        border-right-color: transparent;
    }

    .c-content-tile-1 .c-tile-content.c-arrow-left::after {
        border-bottom-color: #000000;
        border-right-color: transparent;
        bottom: 0;
        right: auto;
        top: auto;
    }

}

/* jango css end*/

input[type="checkbox"].styled:checked + label:after, input[type="radio"].styled:checked + label:after {
    font-family: 'FontAwesome' !important;
    padding-top: 1px;
    padding-left: 2px;
    color: #fff !important;
    background-color: #2c97de !important;
}

input[type="checkbox"].styled:checked + label:after {
    content: "\f00c";
}

.checkbox.checkbox-inline {
    margin-top: 12px;
    vertical-align: initial;
}

@media only screen and (max-width: 768px) {
    .birthday-picker {
        margin: 15px 0 0 !important;
    }
}

#birthday {
    clear: both;
    margin-bottom: 22px;
}

/*
Fade content bs-carousel with hero headers
Code snippet by maridlcrmn (Follow me on Twitter @maridlcrmn) for Bootsnipp.com
Image credits: unsplash.com
*/

/********************************/
/*       Fade Bs-carousel       */
/********************************/
.fade-carousel {
    position: relative;
    height: 500px;
}

.fade-carousel .carousel-inner .item {
    height: 500px;
}

.fade-carousel .carousel-indicators {
    bottom: 25px;
}

.fade-carousel .carousel-indicators > li {
    margin: 0 2px;
    background-color: #f39c12;
    border-color: #f39c12;
    opacity: .7;
}

.fade-carousel .carousel-indicators > li.active {
    width: 10px;
    height: 10px;
    opacity: 1;
}

/********************************/
/*          Hero Headers        */
/********************************/
.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    color: #fff;
    text-align: center;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.hero h1 {
    font-size: 21px;
    font-weight: bold;
    padding: 0;
    text-transform: initial;
    margin: 0 0 25px;
}

.fade-carousel .carousel-inner .item .hero {
    opacity: 0;
    -webkit-transition: 2s all ease-in-out .1s;
    -moz-transition: 2s all ease-in-out .1s;
    -ms-transition: 2s all ease-in-out .1s;
    -o-transition: 2s all ease-in-out .1s;
    transition: 2s all ease-in-out .1s;
}

.fade-carousel .carousel-inner .item.active .hero {
    opacity: 1;
    -webkit-transition: 2s all ease-in-out .1s;
    -moz-transition: 2s all ease-in-out .1s;
    -ms-transition: 2s all ease-in-out .1s;
    -o-transition: 2s all ease-in-out .1s;
    transition: 2s all ease-in-out .1s;
}

/********************************/
/*            Overlay           */
/********************************/
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #080d15;
    opacity: .7;
    top: 0;
}

/********************************/
/*          Custom Buttons      */
/********************************/
.btn.btn-lg {
    padding: 10px 40px;
}

.btn.btn-hero,
.btn.btn-hero:hover,
.btn.btn-hero:focus {
    color: #f5f5f5;
    background-color: #1abc9c;
    border-color: #1abc9c;
    outline: none;
    margin: 20px auto;
}

/********************************/
/*       Slides backgrounds     */
/********************************/
.fade-carousel .slides .slide-inner {
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/********************************/
/*          Media Queries       */
/********************************/
@media screen and (min-width: 980px) {
    .hero {
        width: 980px;
    }
}

/* sectiune banda text begin */

.banda-text {
    background-color: #181927;
    margin: 0;
    padding: 33px 0;
}

.banda-text ul.text-box-small {
    float: left;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
}

.banda-text ul.text-box-small li {
    list-style-type: none;
    display: inline-block;
    width: 175px;
    border-right: 1px solid #ffffff;
    margin: 0 auto;
    padding: 0;
}

.banda-text ul.text-box-small li:last-child {
    border-right: none !important;
}

.banda-text ul.text-box-small li a {
    font-size: 20px;
    color: #ffffff;
    line-height: 120%;
    float: left;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
}

.banda-text ul.text-box-small li a:hover {
    text-decoration: none;
    color: #dfbd1f;
}

@media screen and (max-width: 480px) {
    .banda-text ul.text-box-small li {
        border-right: none;
        border-bottom: 1px solid #ffffff;
    }

    .banda-text ul.text-box-small li:last-child {
        border-bottom: none;
    }

    .banda-text ul.text-box-small li a {
        padding: 5px 0 10px;
    }
}

/* sectiune banda text end */

/* noul titlu configurabil */
.titlu-pagina-home, #about-1 h1, #about-2 h1, #about-3 h1, #features6 h1, #features4 h1, #gallery h1, .section-title-features h1, .parteneri h1, .noutati h1 {
    text-align: center;
    font-size: 40px;
    width: auto;
    display: table;
    margin: 30px auto 35px;
    padding: 15px 20px;
    line-height: 100%;
}

/*noul titlu configurabil */

/* testimonial begin */

section.testimonial-quoted {
    width: 100%;
    min-height: 503px;
    position: relative;
    padding: 30px 0;
}

section.testimonial-quoted img.img-abs {
    position: absolute;
    bottom: 40px;

}

section.testimonial-quoted .text-testim {
    float: right;
    width: auto;
    position: relative;
    margin: 60px 0 0 0;
}

section.testimonial-quoted .text-testim .text-quote {
    color: #ffffff;
    float: right;
    width: auto;
    text-align: right;
    font-size: 20px;
    line-height: 120%;
    margin: 0 0 15px 0;
    padding: 0;
    clear: both;
}

#testimonials.testimonial-quoted .text-testim .text-quote p {
    color: #ffffff;
}

section.testimonial-quoted .text-testim .text-quote strong {
    color: #dfbd1f;
    font-weight: normal !important;
}

img.quote-top {
    position: absolute;
    left: -50px;
    top: -15px;
}

img.quote-down {
    position: absolute;
    right: -50px;
    bottom: -10px;
}

#testimonials p.name-test {
    font-size: 24px;
    float: right;
    text-align: right;
    color: #dfbd1f;
    line-height: 100%;
    margin: 70px 0 0 0;
    padding: 0;
    z-index: 99;
    position: relative;
}

img.img-center {
    display: block;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    img.quote-down {
        bottom: -20px;
        right: 0;
    }

    img.quote-top {
        left: 0;
        top: -35px;
    }

    section.testimonial-quoted .text-testim p.text-quote {
        font-size: 16px;
    }

    p.name-test {
        font-size: 18px;
    }
}

#testimonials.testimonial-quoted {
    background-attachment: initial !important;
    margin: 0;
    padding: 0;
}

#testimonials.testimonial-quoted .carousel-inner > .item {
    min-height: 503px;
}

#testimonials.testimonial-quoted .carousel-indicators {
    bottom: 20px;
}

/* testimonial end */

/* footer begin */

.footer-slim {
    height: auto;
    padding-bottom: 30px;
    position: relative;
    width: 100%;
    border-bottom: none;
    border-top: none;
    padding-top: 40px;
}

.footer-slim .container-footer {
    width: 100%;
    border-top: 1px solid #cccccc;
    padding: 20px 0 0 0;
}

.footer-slim .container-footer p.copy {
    font-size: 18px;
    text-align: left;
    color: #b0b0b0;
    margin: 0;
    padding: 0;
    line-height: 100%;
    float: left;
    width: 100%;
}

.footer-slim .container-footer a.tel {
    text-align: left;
    float: left;
    width: 100%;
    margin: 5px 0 0 0;
    color: #10165e;
    font-size: 12px;
}

.footer-slim .container-footer ul {
    float: right;
    margin: 0;
    padding: 0;
}

.footer-slim .container-footer ul li {
    float: left;
    margin: 0 7px;
}

/* footer end */

/* sectiune motive begin */

section.motive {

    width: 100%;
    height: 100%;
    padding: 0 0 10px 0;
    margin: 0;
}

section.motive .content-motive {
    float: left;
    width: 100%;
}

section.motive .container h3.title-new-section {
    margin: 30px auto 15px;
}

section.motive .content-motive .box-motive {
    min-height: 220px;
    background-color: #dfbd1f;
}

section.motive .content-motive .box-motive p, section.motive .content-motive .box-motive span {
    font-size: 40px;
    width: 100%;
    float: left;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    padding: 30px 5px 0 5px;
    line-height: 100%;
}

section.motive .content-motive .box-motive span {
    font-size: 20px;
    text-transform: none;
    padding: 10px 5px 0 5px;
}

.padd-l-r-doi-px {
    padding-left: 2px;
    padding-right: 2px;
}

h4.title-sub-new-section {
    text-transform: none;
    text-align: center;
    width: 100%;
    float: left;
    margin: 0 0 30px 0;
    padding: 0;
    font-size: 20px;
    color: #b0b0b0;
}

@media only screen and (min-width: 769px) and (max-width: 1200px) {
    section.motive .content-motive .box-motive p, section.motive .content-motive .box-motive span {
        font-size: 28px;
    }

    section.motive .content-motive .box-motive span {
        font-size: 20px;
    }
}

@media only screen and (max-width: 768px) {
    h4.title-sub-new-section {
        font-size: 18px;
    }

    section.motive .content-motive .box-motive p, section.motive .content-motive .box-motive span {
        font-size: 18px;
    }

    section.motive .content-motive .box-motive span {
        font-size: 16px;
    }
}

/* sectiune motive end */

/* sectiune parteneri begin */

section.parteneri {
    width: 100%;
    height: 100%;
    padding: 0 0 10px 0;
    margin: 0;
}

section.parteneri h6.title-partener, section.parteneri .desc-part {
    font-size: 18px;
    width: 100%;
    float: left;
    color: #181927;
    text-align: left;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 120%;
}

section.parteneri .desc-part {
    font-size: 14px;
    color: #b0b0b0;
    text-align: left;
    margin: 0;
    padding: 0;
}

section.parteneri .content-parteneri {
    float: left;
    margin: 20px 0 0 0;
    padding: 0;
}

section.parteneri .content-parteneri a.vz-lista-c {
    float: right;
    margin: 20px 0 0 0;
    padding: 3px 7px;
    background: #191a28;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
}

@media only screen and (max-width: 768px) {
    .no-padd-l-r-mob {
        padding-left: 0;
        padding-right: 0;
    }

    section.parteneri p.desc-part {
        margin: 0 0 15px 0;
    }
}

/* sectiune parteneri end */

/* sectiune noutati begin */

section.noutati {
    width: 100%;
    height: 100%;
    padding: 0 0 10px 0;
    margin: 0;
}

.flex-container {
    width: 100%;
    height: 445px;
}

.flex-item-big {
    background-color: #191a28;
    width: 100%;
    height: 445px;
    margin: 0 5px 0 0;
    position: relative;
}

.flex-item-small {
    background-color: #191a28;
    width: 100%;
    height: 220px;
    margin: 0;
    position: relative;
}

.padd-l-box {
    padding-left: 0;
    padding-right: 5px;
}

.margin-bottom {
    margin-bottom: 5px;
}

.flex-container .box-new-interior {
    padding: 10px 20px;
    float: left;
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: #191a28;
}

.flex-container .box-new-interior span {
    font-size: 14px;
    margin: 0 0 5px 0;
    padding: 0;
    color: #dfbd1f;
    float: left;
    width: 100%;
}

.flex-container .box-new-interior p {
    margin: 0;
    line-height: 110%;
    font-size: 18px;
    color: #ffffff;
    float: left;
    width: 100%;
    padding: 0 50px 0 0;
    height: 2.6em;
    overflow: hidden;
}

.flex-container .box-new-interior a {
    background: url("/assets/images/sageata-right.png") no-repeat right 0;
    float: left;
    width: 100%;
}

.flex-container .box-new-interior p:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 768px) {
    .flex-container {
        display: inline;
        height: 100%;
    }

    .flex-item-big {
        height: 100%;
        float: left;
        margin: 0;
    }

    .flex-container .box-new-interior {
        padding: 10px 5px 15px;
    }

    .padd-l-box {
        padding: 0;
    }

    .flex-container .box-new-interior p {
        padding: 0 25px 0 0;
        font-size: 14px;
    }

    .flex-container .box-new-interior a {
        background-position: right;
    }

    .flex-item-small {
        float: left;
        height: 100%;
    }

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

    .flex-container .box-new-interior span {
        font-size: 12px;
    }
}

.flex-item-big, .flex-item-small {
    overflow: hidden;
}

.flex-item-big img.img-responsive, .flex-item-small img.img-responsive {
    width: 100%;
}

.article_image {
    text-align: center;
}

.article_image img.img-responsive {
    display: inline-block;
    max-height: 400px
}

section#news .flex-item-big {
    margin-bottom: 5px;
}

/* sectiune noutati end */

#share-buttons a {
    padding: 0;
    font-size: 16px;
    line-height: 32px;
    font-family: initial !important;
    text-align: center;
}

.share-ul li {
    list-style-type: none;
}

/* css calendar begin */
.material-icons {
    font-family: 'Material Icons' !important;
}

.dtp-date-view header.dtp-header {
    height: auto;
    line-height: 100%;
}

.dtp-date-view header.dtp-header .dtp-close {
    top: 0.3em;
}

.dtp-picker .dtp-picker-calendar table.dtp-picker-days tr > td > a {
    padding: 0.5em 0.4em 0.4em 0.4em;
}

.dtp .dtp-content .dtp-buttons button {
    padding: 5px 20px;
    font-size: 12px;
    background: none;
}

.dtp .dtp-content .dtp-buttons button:hover {
    background: rgba(153, 153, 153, .2);
}

/* css calendar end */

.whatsapp-cta {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
    z-index: 1000;
}

.whatsapp-cta img {
    max-width: 100%;
    max-height: 100%;
}


.cd-label.select-label:not(.float) {
    display: none;
}

/* input type 2 */
.mat-group {
    position: relative;
    margin-bottom: 55px;
    display: block;
}

.mat-group.mat-group-error .form-error {
    display: block;
}

body .row .mat-group .mat_elem {
    display: block;
    font-size: 14pt;
    padding: 10px 10px 10px 35px;
    border: none;
    border-bottom: 1px solid #ccc;
    width: 100%;
    background: transparent;
    font-weight: 300;
    box-shadow: none;
    border-radius: 0;
}

.mat_elem:focus,
.mat_elem:focus-visible {
    outline: none;
    box-shadow: none;
}

.mat_label {
    position: absolute;
    top: 10px;
    left: 5px;
    font-size: 14pt;
    font-weight: normal;
    pointer-events: none;
    transition: all 0.2s ease;
}

.mat_border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    transition: 0.4s;
    background-color: black;
}

.left-inner-addon .mat_label {
    left: 35px;
}

.left-inner-addon .mat_elem {
    padding-left: 35px;
}

input:focus ~ .mat_label,
.mat_elem_value .mat_label {
    top: -20px;
    font-size: 10pt;
    left: 5px;
}

input:focus ~ .mat_border,
.mat_elem_value .mat_border {
    width: 100%;
}

label.mat-group div.mat_elem {
    margin-bottom: 0;
}

label.mat-group {
    padding: 0;
    cursor: pointer;
}

body div .checkbox.mat-checkbox input[type="checkbox"] + label.mat-checkbox-label::before {
    height: 15px;
    width: 15px;
    top: 10px;
    border: 0 none !important;
    background: #cbd1d8;
    box-shadow: none;
}

body div .checkbox.mat-checkbox input[type="checkbox"]:checked + label.mat-checkbox-label::before,
body div .checkbox.mat-checkbox input[type="radio"]:checked + label.mat-checkbox-label::before {
    content: "\00d7";
    background: #40e0d0;
    color: #ffffff;
    font-size: 18px;
}

.mat-checkbox input[type="checkbox"].styled:checked + label:after {
    opacity: 0;
}

.mat-checkbox input[type="checkbox"].styled:checked + label:after,
.mat-radio input[type="radio"].styled:checked + label:after {
    content: "\00d7";
    background: #40e0d0 !important;
    font-size: 20px;
    font-weight: bold;
}

body .mat-radio .radio label::before {
    height: 15px;
    width: 15px;
    top: 10px;
    border: 0 none !important;
    background: #cbd1d8;
    box-shadow: none;
}

.mat-group .help-block {
    position: absolute;
}

.mat-radio {
    margin-bottom: 55px;
}

#mobile.mat_elem {
    border-radius: 0px;
}

/* input type 2 end */

ul.cd-slider {
    padding: 0
}
