html, body {
    margin:  0px;
    text-align:  right;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

img {
    border: 0px;
}

::-webkit-input-placeholder {
    color: #999999;
}

a {
    text-decoration: none;
}

.float {
    float: right;
    width: 100%;
}

.relative {
    position: relative;
}

blockquote {
    border-radius: 3px;
    float: right;
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0.05);
    margin: 20px 0px;
    text-align: center;
    padding: 5px 15px;
    width: 100%;
}

blockquote:before {
    content: open-quote;
    background-color: #e53935;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    padding: 5px;
    height: 30px;
    width: 30px;
    text-align: center;
    top: -35px;
    right: calc(50% - 20px);
    border: 5px solid white;
    font-family: David;
    position: absolute;
    font-size: 30px;
}

.hidden {
    display: none;
}

.shadow {
    box-shadow: 0 2px 4px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.10);
}

form input, form textarea, .cart-form input, .cart-form textarea {
    float: right;
    width: 100%;
    border: 1px solid #e3e3e3 !important;
    font-size: 16px;
    border-radius: 3px;
    padding: 8px 10px;  
    margin-top: 10px;
    margin-bottom: 10px;
    outline: 0px;
    color: #444444;
    background-color: white;
    font-family: 'assistant';
}

form .button {
    float: left;
    background-color: #206BD1;
    color: white;
    border: 0px;
    border-radius: 3px;
    font-size: 18px;
    padding: 5px 30px;
    font-family: 'assistant';
    margin-top: 10px;
    transition: 0.2s;
    cursor: pointer;
}

form .button:hover {
    background-color: white;
    color: black;
}
    
.profile {
    border:1px solid #dbdbdb;
    padding: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

iframe {
    width: 100%;
    height: 380px;
}

.admin-shortcuts {
    position: fixed;
    right: 15px;
    bottom: 15px;
}

.admin-shortcuts a {
    float: right;
    color: white;
    transition: 0.2s;
    margin-left: 15px;
    background-color: #00BCD4;
    padding: 8px;
    border-radius: 3px;
}

.admin-shortcuts a:hover {
    background-color: #2C393F;
}

.success {
    background-color: #6eca57;
    color: white;
    padding: 10px;
    margin-top: 15px;
    text-align: center;
}

label {
    float: right;
    width: 100%;
}

.half-field {
    width: 50%;
}

.third-field {
    width: 33.33%;
    padding-right: 40px;
}

.third-field:nth-child(3n+1) {
    padding-right: 0px;
}

.half-field:nth-child(2n) {
    padding-right: 20px;
}

.card-profile {
    width: 180px;
    height: 180px;
}

.red {
    color: red;
}

.green {
    color: green;
}

.gray {
    color: gray;
    font-size: 13px;
}

.centered {
    text-align: center;
}

.slick-arrow {
    position: absolute;
    top: 47%;
    background-color: transparent;
    height: 32px;
    border: 0px;
    z-index: 99;
    cursor: pointer;
    width: 32px;
}

.slick-prev {
    right: -70px;
    background-image: url('/img/default/right-arrow.png');
}

.slick-next {
    left: -70px;
    background-image: url('/img/default/left-arrow.png');
}

/* end of cards plugin */

.popup {
    position: fixed;
    top: 35%;
    background-color: white;
    width: 320px;
    right: calc(50% - 160px);
    text-align: center;
    z-index: 9999;
}

.popup-close {
    position: absolute;
    right: 0px;
    top: -40px;
    color: white;
    border:1px solid white;
    cursor: pointer;
    padding: 2px 5px;
    border-radius: 3px;
}

.popup .msg {
    position: absolute;
    border-radius: 5px;
    box-shadow: 0px 0px 15px black;
    border: 10px solid white;
    height: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.dark {
    position: fixed;
    z-index: 1000;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(40, 52, 147, 0.7);
}

/* Gallery */

#grid {
    list-style-type: none;
    padding: 0px;
    margin: 0px -15px;
}

.grid-item { 
    width: 33.33%;
    float: right;
    padding: 15px;
}

.grid-item a {
    width: 100%;
}

.grid-item span {
    position: absolute;
    right: 15px;
    bottom: 15px;
    text-align: center;
    transition: 0.2s;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    padding: 4px 4px;
    box-shadow: 0px 0px 5px #a7a7a7;
    color: black;
}

.grid-item span:empty {
display: none;
}

.grid-item a img {
    width: 100%;
    display: block;
    height: auto;
}

/* live chat */

.openlivechatbox {
    position: fixed;
    left: 30px;
    color: white;
    z-index: 99;
    cursor: pointer;
    bottom: 30px;
    background-color: #FF860E;
    padding: 10px;
    text-align:center;
    }
    
    .openlivechatbox img {
    display: inline-block;
    }
    
    .closechatboxlive {
    background-color: #0097a7;
    color: white;
    height: 25px;
    cursor: pointer;
    width: 25px;
    text-align: center;
    position: absolute;
    top: -25px;
    left: 0px;
    }
    
    .livechatbox {
    position: fixed;
    display: none;
    z-index: 99;
    left: 30px;
    width: 300px;
    bottom: 30px;
    background-color: #e4e4e4;
    padding: 10px;
    }
    
    .livechatbox-1 {
    background-color: white;
    padding: 10px;
    }
    
    .livechatbox-1 > div {
    border-bottom: 1px solid #e4e4e4;
    padding: 5px 0px;
    display: none;
    }
    
    .livechatbox-1 > div:nth-last-child(1) {
    border-bottom: 0px;
    }
    
    .livechatbox-2 input {
    width: calc(100% - 110px);
    float: right;
    }
    
    .livechatbox-2 button {
    width: 100px;
    float: right;
    cursor: pointer;
    margin: 10px 10px 0px 0px;
    background-color: #0097a7;
    border: 0px;
    color: white;
    font-size: 20px;
    padding: 7px;
    font-family: 'assistant';
    }

    /* exit popup */

    .popup-exit {
        position: fixed;
        background-color: white;
        padding: 20px;
        width: 30%;
        z-index: 1001;
        color: white;
        display: none;
        text-align: center;
        background-color: #00ADF2;
        box-shadow: 0px 0px 15px black;
    }

    .dark {
        position: fixed;
        top: 0px;
        left: 0px;
        display: none;
        right: 0px;
        bottom: 0px;
        background-color: rgba(0,0,0,0.75);
    }

    .exitpopup-big {
        font-size: 26px;
        font-weight: bold;
    }

    .exitpopup-small {
        margin: 5px 0px;
    }

    .popup-exit input {
        width: 35%;
        float: right;
        height: 40px;
        margin: 15px 0px;
        margin-left: 15px;
        border-radius: 25px;
    }

    .popup-exit button {
        width: calc(30% - 30px);
        height: 40px;
        margin: 15px 0px;
        color: #0b5877;
        border: 0px;
        cursor: pointer;
        background-color: #CDF560;
        font-weight: bold;
        font-family: 'assistant';
        font-size: 18px;
        border-radius: 25px;
    }

    
/* mobile */

.mobile {
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    z-index: 999;
    height: 55px;
    display: none;
    background-color: #11ABCF;
}

.mobile-logo {
    float: right;
    height: 55px;
    display: flex;
    align-items: center;
    padding: 15px;
} 

.mobile-logo img {
    max-width: 250px;
    max-height: 100%;
}

.mobile-icons a {
    float: left;
    height: 55px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding: 11px 12px;
}

.mobile-icons a img {
    height: 35px;
}

.mobile-open {
    position: fixed;
    top: 55px;
    z-index: 999;
    max-height: calc(100% - 55px);
    overflow: auto;
    background-color: white;
    display: none;
    box-shadow: 0px 10px 15px #d2d2d2;
}

.mobile-open-contact {
    display: none;
}

.mobile-open form {
    padding: 15px;
    float: right;
    width: 100%;
}

.mobile-open-menu ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.mobile-menu li {
    float: right;
    width: 100%;
}

.mobile-menu ul {
    display: none;
}

.mobile-menu li a {
    padding: 10px;
    float: right;
    width: 100%;
    color: #1A7591;
    border-bottom: 1px solid #e3e3e3;
}

.mobile-menu .has-children {
    position: relative;
}

.mobile-menu .has-children:after {
    content: "▾";
    color:#11ABCF;
    text-align: center;
    font-size: 30px;
    border-right: 1px solid #e3e3e3;
    left: 0px;
    bottom: 1px;
    position: absolute;
    height: calc(100% - 1px);
    width: 40px;
    background-color: #e2eef1;
}

.mobile-menu .has-children li a {
    background-color: #f5f5f5 !important;
}

.mobile-open-contact {
    background-color: #1A7591;
    color: white;
}

.mobile-open-contact input {
    background-color: white;
}

.mobile-open button {
    background-color: white !important;
    color:#1A7591 !important;
    margin-bottom: 10px;
}

@media screen and (max-width: 700px) {
    
iframe {
    height: 150px;
}

.third-field {
    width: 100%;
    padding: 0px;
}
   
}