@import url("mstyle.css");

/* btn-hover */
.btn-hover {
    display: inline-block;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    height: 45px;
    line-height: 45px;
    text-align:center;
    border: none;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    background-size: 300% 100%;
    border-radius: 5px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:hover {
    color: #ffffff;
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:focus {
    outline: none;
}

.btn-hover.disabled {
    opacity: 0.6;
    cursor: auto;
    background-position: 0;
}

.btn-hover.color-1 {
    background-image: linear-gradient(to right, #25aae1, #40e495, #30dd8a, #2bb673);
    box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
}
.btn-hover.color-2 {
    background-image: linear-gradient(to right, #f5ce62, #e43603, #fa7199, #e85a19);
    box-shadow: 0 4px 15px 0 rgba(229, 66, 10, 0.75);
}
.btn-hover.color-3 {
    background-image: linear-gradient(to right, #667eea, #764ba2, #6B8DD6, #8E37D7);
    box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
}
.btn-hover.color-4 {
    background-image: linear-gradient(to right, #fc6076, #ff9a44, #ef9d43, #e75516);
    box-shadow: 0 4px 15px 0 rgba(252, 104, 110, 0.75);
}
.btn-hover.color-5 {
    background-image: linear-gradient(to right, #0ba360, #3cba92, #30dd8a, #2bb673);
    box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
}
.btn-hover.color-6 {
    background-image: linear-gradient(to right, #009245, #FCEE21, #00A8C5, #D9E021);
    box-shadow: 0 4px 15px 0 rgba(83, 176, 57, 0.75);
}
.btn-hover.color-7 {
    background-image: linear-gradient(to right, #6253e1, #852D91, #A3A1FF, #F24645);
    box-shadow: 0 4px 15px 0 rgba(126, 52, 161, 0.75);
}
.btn-hover.color-8 {
    background-image: linear-gradient(to right, #29323c, #485563, #2b5876, #4e4376);
    box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
}
.btn-hover.color-9 {
    background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
    box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
}
.btn-hover.color-10 {
    background-image: linear-gradient(to right, #ed6ea0, #ec8c69, #f7186a , #FBB03B);
    box-shadow: 0 4px 15px 0 rgba(236, 116, 149, 0.75);
}
.btn-hover.color-11 {
    background-image: linear-gradient(to right, #eb3941, #f15e64, #e14e53, #e2373f);  box-shadow: 0 5px 15px rgba(242, 97, 103, .4);
}
/* btn-hover */

/* rozmon */
.rozmon {
    position: fixed;
    left: 15px;
    bottom: -130px;
    right: 0;
    top: auto;
    padding: 15px 0;
    width: calc(100% - 30px);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    transition: 0.3s ease-in-out;
}
.rozmon.show {
    opacity: 1;
    visibility: visible;
    bottom: 15px;
}
.rozmon__block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.rozmon__info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-right: 30px;
}
@media (max-width: 767px) {
    .rozmon__info {
        padding-right: 0;
        margin-bottom: 10px;
    }
}
.rozmon__nav {
    display: flex;
    align-items: center;
}
@media (max-width: 767px) {
    .rozmon__nav {
        width: 100%;
    }
}
.rozmon__external {
    min-width: 200px;
}
@media (max-width: 767px) {
    .rozmon__external {
        width: 100%;
    }
}
.rozmon__bonus {
    font-size: 24px;
    font-weight: 600;
    padding-left: 20px;
}

@media (max-width: 767px) {
    .rozmon__bonus {
        font-size: 20px;
    }
}

.rozmon__logo_img {
    width: 100%;
    display: block;
}
.rozmon-container {
    width: 100%;
    max-width: 1200px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.rozmon-close {
    position: absolute;
    right: 15px;
    top: -20px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 0;
    border: none;
    background-color: #ffffff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    cursor: pointer;
    transition: all 0.3s;
}

.rozmon-close svg {
    width: 10px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

.rozmon-close svg path {
    transition: all 0.3s;
}

.rozmon-close:hover {
    background-color: #ff2424;
}

.rozmon-close:hover svg path {
    fill: #ffffff;
}

.rozmon.hide {
    opacity: 0;
    visibility: hidden;
    bottom: -130px;
}
/* rozmon */

/* Header 3 */
.header-3__stuart {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 479px) {
    .header-3__stuart {
        padding: 10px 10px 15px;
    }
}

.user-menu {
    display: flex;
    flex-wrap: wrap;
}

.user-menu .menu-item {
    margin-right: 20px;
}

@media screen and (max-width: 479px) {
    .user-menu .menu-item {
        margin-right: 15px;
    }
}

.user-menu .menu-item a {
    display: block;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 2px;
    color: #050425;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.user-menu .menu-item a:hover {
    background-color: #45c9ff;
    color: #050425;
}

.user-menu .btn-green a {
    background-color: #f52b39;
}

.user-menu .menu-item a:hover {
    background-color: #45c9ff;
    color: #050425;
}

.header-3__search {
    font-size: 20px;
    cursor: pointer;
}

.header-3__burger {
    margin-left: 20px;
}

@media screen and (max-width: 479px) {
    .header-3__burger {
        margin-left: 15px;
    }
}

@media screen and (max-width: 479px) {
    .header-3__media {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

.header-3__media img {
    max-width: 126px;
}

.header-3__center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 20px;
}

@media screen and (max-width: 991px) {
    .header-3 .header-3__center {
        width: auto;
    }
}

@media screen and (max-width: 479px) {
    .header-3 .header-3__center {
        width: 100%;
        justify-content: center;
    }
}

.header-3__right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media screen and (max-width: 479px) {
    .header-3__right {
        width: 100%;
        justify-content: center;
    }
}

.header-3__center ul.main-menu {
    padding-right: 0;
}
/* Header 3 */