/**
* 2007-2019 Slavenja
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://intopsite.ru for more information.
*
*  @author    Slavenja <slavenja@ya.ru>
*  @copyright 2007-2019 Slavenja
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*/
* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'messengers';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/messengers.eot%3F76627296');
    src: url('../fonts/messengers.eot%3F76627296') format('embedded-opentype'), url('../fonts/messengers.woff%3F76627296') format('woff'), url('../fonts/messengers.ttf%3F76627296') format('truetype'), url('../fonts/messengers.svg%3F76627296') format('svg');
}

.main-div {
    position: fixed;
    right: 8px;
    bottom: 8px;
    z-index: 99999999999999999999999;
    transition: .2s all linear;
    -webkit-transition: .2s all linear;
    -moz-transition: .2s all linear;
    -ms-transition: .2s all linear;
    -o-transition: .2s all linear;
}

.main-div-two {
    position: fixed;
    right: 8px;
    bottom: 75px;
    z-index: 99999999999999999999999;
    transition: .2s all linear;
    -webkit-transition: .2s all linear;
    -moz-transition: .2s all linear;
    -ms-transition: .2s all linear;
    -o-transition: .2s all linear;
}

#main-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 50px;
    width: 50px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(0deg, #00B100, #09db09);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 99999999999999999999999;
}

#main-button ~ a {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    height: 50px;
    width: 50px;
    font-size: 20px;
    opacity: 0;
    text-decoration: none;
    color: #fff;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: .2s all linear;
    -webkit-transition: .2s all linear;
    -moz-transition: .2s all linear;
    -ms-transition: .2s all linear;
    -o-transition: .2s all linear;
}

#main-button ~ .slnav-viber {
    background: linear-gradient(0deg, #4E00CC, #7360f2);
}

#main-button.open ~ a {
    opacity: 1;
    transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -webkit-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -moz-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -ms-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -o-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
}

#main-button.open ~ a:nth-of-type(1) {
    bottom: 60px;
}

#main-button.open ~ a:nth-of-type(2) {
    bottom: 120px;
}

#main-button.open ~ a:nth-of-type(3) {
    bottom: 180px;
}

#main-button.open ~ a:nth-of-type(4) {
    bottom: 240px;
}

.wave {
    animation-name: wave;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes wave {
    0% {
        box-shadow: 0 0 0px 0px rgba(0, 177, 0, 0.5);
    }

    100% {
        box-shadow: 0 0 0px 10px rgba(0, 177, 0, 0);
    }

}

.open {
    animation-iteration-count: 1;
}

.flex-container-nav {
    display: flex;
    min-height: 50px;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

.flex-nav-main-phone {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-grow: 1;
}

.flex-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    flex-grow: 1;
}

.top-tel {
    margin: 0 5px 0 5px;
}

.slnav-icon {
    font-size: 16px;
    font-style: normal;
    display: flex;
    min-width: 30px;
    height: 30px;
    margin-right: 3px;
    padding: 7px;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-decoration: none;
    border-radius: 2px;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.sl-messengers {
    font-family: 'messengers';
}

.slnav-icon:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.slnav-icon>span {
    font-size: 14px;
}

.more_phone {
    -webkit-animation: more_phone 7s infinite;
    animation: more_phone 7s infinite;
    color: #fff;
    border-radius: 50%;
}

@-webkit-keyframes more_phone {
    0% {
        -webkit-transform: scale(1);
    }

    5% {
        -webkit-transform: scale(1.2);
    }

    7% {
        -webkit-transform: scale(1.2) rotate(10deg);
    }

    9% {
        -webkit-transform: scale(1.2) rotate(-10deg);
    }

    11% {
        -webkit-transform: scale(1.2) rotate(10deg);
    }

    13% {
        -webkit-transform: scale(1.2) rotate(-10deg);
    }

    15% {
        -webkit-transform: scale(1.2) rotate(10deg);
    }

    17% {
        -webkit-transform: scale(1.2) rotate(0deg);
    }

    22% {
        -webkit-transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1);
    }

}

@keyframes more_phone {
    0% {
        transform: scale(1);
    }

    5% {
        transform: scale(1.2);
    }

    7% {
        transform: scale(1.2) rotate(10deg);
    }

    9% {
        transform: scale(1.2) rotate(-10deg);
    }

    11% {
        transform: scale(1.2) rotate(10deg);
    }

    13% {
        transform: scale(1.2) rotate(-10deg);
    }

    15% {
        transform: scale(1.2) rotate(10deg);
    }

    17% {
        transform: scale(1.2) rotate(0deg);
    }

    22% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }

}

.phone-caret-down {
    display: flex;
    width: 10px;
    height: 20px;
    order: 2;
    justify-content: flex-start;
    align-items: end;
}

.open>#phone_dropdown {
    display: flex;
    flex-direction: column;
    width: 230px;
    color: #333;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#phone_dropdown>li>a {
    color: #333 !important;
}

#phone_dropdown>li>a:hover, #phone_dropdown>li>a:focus {
    margin: 0;
    color: #333;
    background-color: #fff;
}

#callbackbtn {
    font-size: 14px;
    display: inline-block;
    min-width: 30px;
    min-height: 30px;
    margin: 3px;
    padding: 6px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 2px;
    order: 3;
}

.to-bookmarks {
    order: 4;
}

.to-bookmarks:hover {
    z-index: 999;
    color: #fff;
    background: #f90;
}

.slnav-vk {
    color: #fff !important;
    background: #4c75a3;
}

.slnav-fb {
    color: #fff !important;
    background: #3b5998;
}

.slnav-instagram {
    color: #fff !important;
    background: #ff009c;
}

.slnav-youtube {
    color: #fff !important;
    background: red;
}

.slnav-viber {
    color: #fff !important;
    background: linear-gradient(0deg, #4E00CC, #7360f2);
}

.slnav-whatsapp {
    color: #fff !important;
    background: linear-gradient(0deg, #00b100, #09db09);
}

.slnav-mail:hover, .slnav-telegram, .slnav-skype {
    color: #fff !important;
    background: linear-gradient(0deg, #017ab1, #01abe6);
}

.login, .account {
    order: 5;
}

.login:hover, .account:hover {
    color: #fff !important;
    background: green;
}

.logout {
    order: 5;
}

.logout:hover {
    color: #fff !important;
    background: red;
}

@media (max-width:768px) {
    .flex-container-nav {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    #callbackbtn>span {
        font-size: 12px;
    }

    .top-tel>div>a {
        font-size: 14px;
    }

}

.flex-fone {
    display: flex;
    justify-content: flex-start;
    order: 0;
    flex: 1 0 auto;
    align-self: flex-start;
}

@media (max-width:520px) {
    .flex-fone {
        display: flex;
        width: 100%;
        justify-content: center;
        order: 1;
    }

}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width:620px) {
    .flex-container-nav {
        flex-direction: column;
        justify-content: center;
    }

}

#block_slcontact_nav>div span a i:hover, #block_slcontact>div span a i:hover, div.adminicon>a i:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

div.adminicon {
    float: right;
    margin-top: 12px;
}

div.adminicon>a i {
    font-size: 16px;
    display: inline-block;
    min-width: 30px;
    min-height: 30px;
    margin: 3px;
    padding-top: 6px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 50%;
}

#block_slcontact {
    border-left: 1px solid #515151;
}

#block_slcontact>div time, #block_slcontact>div ul li a {
    color: #fff !important;
}

#block_slcontact>div ul li i {
    font-size: 20px;
    display: inline-block;
    min-width: 20px;
    min-height: 20px;
    margin-right: 5px;
    margin-left: 10px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 100%;
}

#block_slcontact>div ul li {
    line-height: 30px;
    overflow: hidden;
}

#block_slcontact>div span a i {
    font-size: 20px;
    display: inline-block;
    min-width: 40px;
    min-height: 40px;
    margin: 0 3px 3px 0;
    padding: 10px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 100%;
}

#block_slcontact_nav>div span a i {
    font-size: 16px;
    display: inline-block;
    min-width: 30px;
    min-height: 30px;
    margin: 3px;
    padding: 6px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-align: center;
    text-decoration: none;
    border-radius: 5%;
}

.slcontact_phone_info {
    padding-left: 20px;
}

/* #block_slcontact_nav>div span.pull-right i {
border: 1px solid #fff
} */
.sl-icon {
    font-family: 'messengers';
    font-size: 20px;
    font-style: normal;
    display: flex;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-align: center;
    text-align: center;
    text-decoration: none;
    text-decoration: none;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    align-content: center;
}

a.sl_phone {
    font-size: 18px;
    display: inline-block;
    margin-right: 5px;
    text-decoration: none;
}

span.tel {
    margin-top: 0;
}

.plo {
    padding-right: 0;
    padding-left: 0;
}

small.rr, small.cr {
    padding: 2px;
    border-radius: 3px;
}

#callbacktoggle {
    position: fixed;
    z-index: 99999999999999999999999;
    top: 55px;
    left: 50%;
    display: none;
    max-width: 300px;
    margin-left: -150px;
    padding: 10px;
    text-align: center;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fafafa;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
}

.calblackimg {
    width: 150px;
    height: 150px;
}

#reporttime {
    font-size: 160%;
    font-weight: 200;
}

#result {
    font-weight: bold;
    margin-bottom: 5px;
}

input#phonenumber {
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: center;
    border: 1px solid#777;
}

a.pol_link:hover {
    color: #369 !important;
}

div.clickbuy_block {
    padding: 13px 19px 0;
}

.clickbuy_btn, .clickbuy_btn:hover {
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    margin-bottom: 10px;
    padding: 12px 22px 14px 22px;
    color: #fff;
    border-top: 1px solid #06b2e6;
    border-right: 1px solid #06b2e6;
    border-bottom: 1px solid #06b2e6;
    border-left: 1px solid #06b2e6;
    border-radius: 5px;
    background-image: linear-gradient(#007ab7, #009ad0);
    background-size: 100%;
    text-shadow: 0 1px #015883;
}

.clickbuy_toggle {
    padding: 0 5px 0 5px;
}

.clickbuy_link {
    text-decoration: underline;
}

.clickbuy_result {
    color: red;
}

#scroller {
    position: fixed;
    z-index: 99999999999999999999999;
    right: 6px;
    bottom: 6px;
    display: none;
    display: block;
    width: 54px;
    height: 54px;
    text-align: center;
    color: #fff;
    border: 1px solid #015883;
    border-radius: 50%;
    background: linear-gradient(0deg, #015883, #0066CC);
    transition: .2s all linear;
    -webkit-transition: .2s all linear;
    -moz-transition: .2s all linear;
    -ms-transition: .2s all linear;
    -o-transition: .2s all linear;
}

i.scroller {
    font-size: 36px;
    z-index: 99999999999999999999999;
    margin-top: 5px;
    color: #fff;
}

li.adr, .mosu {
    color: #fff;
}

.footer-container #footer {
    margin-bottom: -30px !important;
}

.footer-container #footer #social_block {
    background: #23282d;
}

.footer-container {
    background: #23282d;
}

#footer #newsletter_block_left .form-group .form-control {
    border-color: #515151;
    background: #23282d;
}
