/* LINK STYLE */
.link {
    color: #002664;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    padding: 0 25px 0 0;
}

.link:after {
    content: "";
    position: absolute;
    top: 1px;
    right: 0;
    width: 14px;
    height: 15px;
    background: url(/build/images/link-arrow.60d04f5c.svg) center no-repeat;
    background-size: 14px;
}


/* BTN ICONs */
.btn-icn-left {
    margin-right: 5px;
    position: relative;
    top: -1px;
}

.btn-icn-right {
    margin-left: 5px;
    position: relative;
    top: -1px;
}


/* BTNS */
.btn {
    height: 40px;
    line-height: 38px;
    padding: 0 30px;
    border-radius: 32px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;

    -webkit-transition: all .4s;
    transition: all .4s;
}

.btn.focus,
.btn:focus {
    box-shadow: none;
}

.btn-primary {
    color: #ffffff;
    background-color: #002664;
    border-color: #002664;
}

.btn-primary:hover {
    color: #ffffff;
    background-color: #3A5876;
    border-color: #3A5876;
}

.btn-primary.focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle,
.show > .btn-primary.dropdown-toggle:focus {
    background-color: #3A5876;
    border-color: #3A5876;
    color: #ffffff;
    box-shadow: none;
    opacity: 0.85;
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #57595B ;
    border-color: #57595B ;
    box-shadow: none;
    opacity: 1;
}

.btn-outline-primary {
    color: #002664;
    background-color: transparent;
    border-color: #002664;
}

.btn-outline-primary:hover {
    color: #002664;
    background-color: #EEF2F7;
    border-color: #002664;
}

.btn-outline-primary.focus,
.btn-outline-primary:focus,
.btn-outline-primary.disabled,
.btn-outline-primary:disabled,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
    background-color: #EEF2F7;
    border-color: #002664;
    color: #002664;
    box-shadow: none;
}


.btn-dark {
    background: #303539;
    border-color: #303539;
    color: #ffffff;
}

.btn-dark:hover {
    background: #181E23;
    border-color: #181E23;
    color: #ffffff;
}


.btn-secondary {
    background-color: #002664;
    border-color: #002664;
    color: #fff;
}


.btn-secondary-outline {
    background-color: transparent;
    border-color: #002664;
    color: #002664;
}

.btn-secondary-outline:hover {
    border-color: #002664;
    background-color: #002664;
    color: #fff;
}


/* GENERAL LINKs */
.back {
    margin: 15px 0 0 0;
    display: inline-block;
}

.back i {
    margin-right: 5px;
}


.dropdown-menu {
    margin: 15px 0 !important;
    padding: 5px 15px;
}

.dropdown-menu li {
    margin: 5px 0;
}


.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
    color: #ffffff;
    background-color: #002664;
    border-color: #002664;
}


.btn-add-cart {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    padding: 0;

    border-radius: 100%;
}

.btn-add-cart img {
    height: 26px;
    position: relative;
    top: -2px;
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .btn {
        padding: 0 20px;
    }

    .btn-add-cart {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .btn-add-cart img {
        height: 22px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {

    .btn-add-cart {
        width: 40px;
        height: 40px;
        line-height: 40px;
        padding: 0;

        border-radius: 100%;
    }

    .btn-add-cart img {
        height: 22px;
        top: 0;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .btn {
        padding: 0 15px;
        font-size: 12px;
        height: 40px;
        line-height: 40px;
    }

    .btn.btn-long-text {
        height: auto;
        line-height: 18px;
        padding: 10px;
    }

    .btn-icn-right,
    .btn-icn-left {
        height: 18px;
    }

    .btn-add-cart {
        padding: 0;
        height: 40px;
        width: 40px;
    }

    .btn-add-cart img {
        height: 22px;
        top: 0;
    }
}

@media only screen and (min-width: 0px) and (max-width: 320px) {
    .btn {
        font-size: 10px;
        line-height: 16px;
        padding: 5px 15px;
        height: auto;
    }

    .btn-icn-right,
    .btn-icn-left {
        height: 15px;
    }
}

