@import 'https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css';

/*Loader*/

.process-overlay {
    position: fixed;
    width: 100%;
    height: 150%;
    background: rgba(255,255,255,.75) url('https://static.koalay.com/Images/KoalayApp/Travel/plane.png') no-repeat center;
    top: 0;
    left: 0;
    z-index: 4;
    -webkit-animation: fly 3s infinite linear;
    background-size: 30% auto;
}

#loading-bar,
#loading-bar-spinner {
    pointer-events: none;
    -webkit-transition: 350ms linear all;
    -moz-transition: 350ms linear all;
    -o-transition: 350ms linear all;
    transition: 350ms linear all;
}

    /*Loading Bar*/

    #loading-bar.ng-enter,
    #loading-bar.ng-leave.ng-leave-active,
    #loading-bar-spinner.ng-enter,
    #loading-bar-spinner.ng-leave.ng-leave-active {
        opacity: 0;
    }

        #loading-bar.ng-enter.ng-enter-active,
        #loading-bar.ng-leave,
        #loading-bar-spinner.ng-enter.ng-enter-active,
        #loading-bar-spinner.ng-leave {
            opacity: 1;
        }

    #loading-bar .bar {
        -webkit-transition: width 350ms;
        -moz-transition: width 350ms;
        -o-transition: width 350ms;
        transition: width 350ms;
        background: #0fb8ad;
        position: fixed;
        z-index: 999999999;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        border-bottom-right-radius: 1px;
        border-top-right-radius: 1px;
    }

    #loading-bar .peg {
        position: absolute;
        width: 70px;
        right: 0;
        top: 0;
        height: 2px;
        opacity: .45;
        -moz-box-shadow: #444 1px 0 6px 1px;
        -ms-box-shadow: #444 1px 0 6px 1px;
        -webkit-box-shadow: #444 1px 0 6px 1px;
        box-shadow: #444 1px 0 6px 1px;
        -moz-border-radius: 100%;
        -webkit-border-radius: 100%;
        border-radius: 100%;
    }

/*End of Loader*/

/*General Rules*/

* {
    box-sizing: border-box;
}

body, html {
    font-family: 'Arial', sans-serif;
    background: #f9f9f9 url('https://static.koalay.com/images/koalayapp/apps_bg.png');
    color: #505050;
    width: 100%;
    padding-bottom: 64px;
    /*-webkit-font-smoothing: antialiased;*/
}

a {
    text-decoration: none;
    color: initial;
    display: inline-block;
}

b, strong {
    font-weight: bold;
}

h1 {
    color: #0fb8ad;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 16px;
}

table {
    display: table;
    width: 100%;
}

td {
    padding: 8px;
}

    td:first-child {
        padding-left: 0;
    }

input[type="text"], input[type="email"], input[type="password"], input[type="tel"], select {
    border: 2px solid #efefef;
    display: block;
    outline: none;
    padding: 16px 8px;
    font-size: 16px;
    color: #505050;
    -webkit-appearance: none;
    border-radius: 0;
    background: none;
    font-family: 'Arial', sans-serif;
    width: 100%;
    transition: .3s;
}

select {
    background:url(https://static.koalay.com/images/koalayapp/general/dropdown.svg) no-repeat;
    background-size:12px;
    background-position:95% 50%
}

input:disabled {
    background: #eee;
}

datepicker {
    background: url('https://static.koalay.com/Images/KoalayApp/Travel/ico-calendar.png') no-repeat;
    background-position: 95% center;
    background-size: 20px 20px;
}

input:focus, select:focus {
    border-color: #999;
}

[type="checkbox"].custom-checkbox:not(:checked), [type="checkbox"].custom-checkbox:checked {
    position: absolute;
    left: -9999px;
}

    [type="checkbox"].custom-checkbox:not(:checked) + label, [type="checkbox"].custom-checkbox:checked + label {
        position: relative;
        padding-left: 30px;
        cursor: pointer;
        padding-top: 5px;
        color: #828499;
        font-size: 14px;
    }

        [type="checkbox"].custom-checkbox:not(:checked) + label:before, [type="checkbox"].custom-checkbox:checked + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 2px;
            width: 18px;
            height: 18px;
            border: 3px solid #aaa;
            background: #f8f8f8;
            border-radius: 0;
        }

        [type="checkbox"].custom-checkbox:not(:checked) + label:after, [type="checkbox"].custom-checkbox:checked + label:after {
            content: '✓';
            position: absolute;
            top: 2px;
            left: 0px;
            width: 24px;
            height: 24px;
            font-size: 18px;
            color: #fff;
            transition: all .2s;
            background-color: #0fb8ad;
            text-align: center;
            line-height: 24px;
        }

        [type="checkbox"].custom-checkbox:not(:checked) + label:after {
            opacity: 0;
            transform: scale(0);
        }

        [type="checkbox"].custom-checkbox:checked + label:after {
            opacity: 1;
            transform: scale(1);
        }

.dealer-logo {
    max-width: 270px;
    max-height: 40px;
    margin-top: 24px;
}

/*End of General Rules*/

/*Helper Classes*/

.container {
    /*width: 1170px;*/
    margin: 0 auto;
    position: relative;
    max-width: 1170px;
    min-width: 960px;
    width: calc(100% - 30px);
}

.clearfix {
    clear: both;
}

.full-width {
    width: 100%;
}

.full-height {
    height: 100%;
}

.input-container {
    margin-bottom: 16px;
    position: relative;
}

    .input-container p {
        margin-bottom: 8px;
        color: #777;
    }

.notification-text {
    font-size: 11px;
    color: #828499;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.reverse {
    transform: rotate(90deg);
}

.col-50 {
    width: 50%;
}

.relative {
    position: relative;
}

.green {
    color: #0fb8ad;
}

.align-center {
    text-align: center;
}
input[type="text"].error-input, input[type="email"].error-input, input[type="password"].error-input, input[type="tel"].error-input, select.error-input,
.error-input {
    background-color: #f2dede;
    border-color: #ebccd1;
}

/*End of Helper Classes*/

/*Components*/

.btn {
    padding: 16px 48px;
    transition: .3s;
    box-shadow: 0 0 10px #999;
    border: none;
    outline: none;
    font-size: 100%;
    cursor: pointer;
}

.btn-default {
    background-color: #0fb8ad;
    color: #fff;
}

    .btn-default:hover {
        transform: scale(.98);
        background: #0b837b;
    }

.btn-blue {
    background-color: #2db5e8;
    color: #fff;
}

    .btn-blue:hover {
        transform: scale(.98);
        background-color: #1d7da0;
    }

.btn-selection {
    color: #505050;
    width: 100%;
    padding: 15px 8px;
    border: 2px solid #efefef;
    transition: .3s;
    display: block;
}

    .btn-selection::before {
        content: '';
        width: 16px;
        height: 16px;
        border: 2px solid #ddd;
        border-radius: 50%;
        display: inline-block;
        vertical-align: middle;
        margin-right: 8px;
        text-align: center;
    }

    .btn-selection.active {
        background-color: #0fb8ad;
        border-color: #0fb8ad;
        color: #fff;
    }

        .btn-selection.active::before {
            border-color: #fff;
            background-color: #fff;
            content: '✓';
            color: #0fb8ad;
        }

._720kb-datepicker-calendar-header:nth-child(odd) {
    background: #0fb8ad;
}

/*End of Components*/

/*Header*/

header {
    width: 100%;
    height: 400px;
    display: block;
    background: linear-gradient(141deg, #0fb8ad 0%, #1fc8db 51%, #2cb5e8 75%);
    position: relative;
}

#main-logo {
    width: 270px;
    height: 46px;
    margin-top: 32px;
    background: url('https://static.koalay.com/Images/KoalayApp/Tss/koalay-logo.png') no-repeat center;
    position: relative;
    z-index: 1;
}

#img-travel-insurance {
    width: 280px;
    position: absolute;
    top: 32px;
    right: 0;
    z-index: 1;
}

#silhouette {
    width: 100%;
    height: 100%;
    background: url('https://static.koalay.com/Images/KoalayApp/Travel/silhouette.png');
    background-size: auto 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/*End of Header*/

/*Home*/

.home-container {
    background-color: #fff;
    padding: 64px 32px 48px;
    box-shadow: 0 0 20px #666;
    margin-top: -200px;
    border-radius: 10px;
}

    .home-container h1 {
        margin: 33px 0 8px;
    }

        .home-container h1.first {
            margin-top: 0;
        }
		.home-container.align-center h1.first {
			text-align: left;
		}

.offer-inputs {
    width: 60%;
}

.count {
    width: 40px;
    height: 40px;
    border: 2px solid #0fb8ad;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    color: #0fb8ad;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.btn-schengen {
    color: #0fb8ad;
    font-size: 14px;
    margin-top: 16px;
    display: block;
}

.inner-content {
    margin-left: 58px;
}

.vertical-line {
    width: 2px;
    height: 360px;
    background: #0fb8ad;
    position: absolute;
    top: 30px;
    left: 20px;
}

.btn-add-tckn {
    color: #0fb8ad;
    margin-top: 16px;
    font-size: 14px;
}

.txt-tckn {
    width: 50%;
}

.customer-tckn{
    margin-bottom:16px;
}

.customer-tckn-item {
    position: relative;
}

.btn-remove-tckn {
    position: absolute;
    left: -24px;
    top: 18px;
    color: red;
}

.customer-tckn-name {
    position: absolute;
    top: 18px;
    font-size: 14px;
    font-style: italic;
    font-weight: bold;
    left: 52%;
    color: #777;
}

.agreement {
    margin: 36px 0 36px 56px;
}

.notes {
    width: 40%;
    padding-left: 48px;
}

    .notes img {
        width: 95%;
        margin: 0 auto;
    }

.btn-get-offer {
    margin-left: 56px;
}
.btn-get-offer.disabled {
    background-color: #ccc;
}
/*End of Home*/

/*Payment*/

.payment-container {
    width: 860px;
    background: #fafafa;
    box-shadow: 0 0 120px #555;
    margin: -20px auto 60px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 8px;
}

.offer {
    width: 55%;
    background: #fafafa;
    padding: 32px 64px 32px 32px;
}

.payment {
    width: 45%;
    background: #fff;
    box-shadow: 0 0 40px #333;
    padding: 32px;
}

.price {
    color: #0fb8ad;
    font-size: 20px;
}

.offer-logo {
    width: 160px;
    margin-bottom: 48px;
}

.tbl-offer td:first-child {
    width: 40px;
    font-size: 24px;
    vertical-align: middle;
}

.tbl-offer tr.space-bottom td {
    padding-bottom: 24px;
}

.tbl-offer tr.space-top td {
    padding-top: 24px;
}

.tbl-offer tr:nth-child(2n) {
    border-bottom: 1px dashed #ddd;
}

.commission-container {
    margin-top: 16px;
    font-size: 14px;
}

    .commission-container strong, .commission-container > a {
        display: inline-block;
        float: left;
        margin-right: 5px;
    }

    .commission-container > a {
        color: #0fb8ad;
        font-weight: 600;
    }

    .commission-container > div {
        display: inline-block;
        float: left;
    }

        .commission-container > div span {
            display: inherit;
            color: #0fb8ad;
            font-weight: 600;
        }



#one-year {
    margin-top: 18px;
    line-height: 20px;
    margin-bottom: 16px;
}

    #one-year h1 {
        margin-bottom: 12px;
        font-size: 24px
    }

    #one-year p {
        margin-bottom: 20px;
    }

.lineth {
    text-decoration: line-through;
    color: #ddd !important;
}

#btn-pdf {
    position: absolute;
    width: 48px;
    height: 48px;
    line-height: 48px;
    background: #0fb8ad;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    top: 40px;
    left: 372px;
    box-shadow: 0 0 10px #333;
    font-size: 24px;
    transition: .3s;
    -webkit-animation: pulse 1s infinite linear;
}

    #btn-pdf span {
        position: absolute;
        top: 2px;
        background-color: rgba(0, 0, 0, .75);
        color: #fff;
        padding: 16px;
        font-size: 13px;
        line-height: 12px;
        width: 180px;
        left: -190px;
        visibility: hidden;
        opacity: 0;
        transition: .3s;
        letter-spacing: 1px;
    }

        #btn-pdf span:after {
            left: 100%;
            top: 50%;
            border: solid transparent;
            content: " ";
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
            border-color: rgba(136, 183, 213, 0);
            border-left-color: rgba(0, 0, 0, .75);
            border-width: 10px;
            margin-top: -10px;
        }

    #btn-pdf:hover {
        -webkit-animation: none;
    }

        #btn-pdf:hover span {
            visibility: visible;
            opacity: 1;
            left: -200px;
        }

.schengen {
    max-height: 80%;
    overflow: auto;
}

    .schengen li {
        float: left;
        margin: 8px 8px 8px 20px;
        width: 28%;
        list-style-type: disc;
    }

.btn-download-pdf {
    margin: 36px 0;
}

@-webkit-keyframes pulse {
    0% {
        transform: scale(.90);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(.90);
    }
}

@-webkit-keyframes fly {
    0% {
        top: -50%;
    }

    50% {
        top: -45%;
    }

    100% {
        top: -50%;
    }
}

/*End of Payment*/

/*Footer*/

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    background: #fff;
    box-shadow: 0 0 10px #aaa;
    width: 100%;
    z-index: 3;
    padding: 12px 0;
    font-size: 12px;
    color: #555;
}

    footer li {
        display: inline-block;
        margin-right: 16px;
    }

    footer a {
        color: #0fb8ad;
    }

/*End of Footer*/

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.75);
    z-index: 9;
    visibility: hidden;
    opacity: 0;
    transition: .5s;
    font-size: 14px;
    line-height: 18px;
}

    .modal.active {
        visibility: visible;
        opacity: 1;
    }

.modal-inner {
    width: 800px;
    max-height: 400px;
    position: absolute;
    top: -400px;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: rgba(255,255,255,.9);
    border-radius: 8px;
    box-shadow: 0 0 100px #777;
    padding: 32px;
    overflow: auto;
    transition: .5s;
}

.modal.active .modal-inner {
    top: 0;
}

.modal-inner h1 {
    margin-bottom: 36px;
}

.btn-modal-close {
    position: absolute;
    top: 32px;
    right: 32px;
    color: #0fb8ad;
    font-size: 24px;
    transition: .3s;
}

    .btn-modal-close:hover {
        transform: scale(.8);
    }

._720kb-datepicker-calendar-day._720kb-datepicker-active {
    background: rgb(175, 232, 232);
}

.btn-homepage {
    color: #0fb8ad;
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.eot');
    src: url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.woff') format('woff'), url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-menu-down:before {
    content: "\e259";
}