/* ALERT RELATED CLASS (START) */

.alert-area {
    max-height: 100%;
    position: fixed;
    bottom: 5px;
    left: 20px;
    right: 20px;
    z-index: 100;
}

.alert-content {
    padding-right: 16px;
    text-align: left;
}

.alert-box {
    font-size: 16px;
    color: white;
    background: rgba(0, 0, 0, 0.9);

    line-height: 1.3em;
    padding: 10px 15px;
    margin: 5px 10px;
    position: relative;
    border-radius: 5px;
    transition: opacity 0.5s ease-in;
}

.alert-box.red {
    background: rgba(255, 0, 0, 0.7);
}

.alert-box.green {
    background: rgba(0, 255, 0, 0.7);
}

.alert-box.gray {
    background: rgba(15, 30, 53, .7);
}

.alert-box.hide {
    opacity: 0;
}

.alert-close {
    background: transparent;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.alert-close:before,
.alert-close:after {
    content: '';
    width: 15px;
    border-top: solid 2px white;
    position: absolute;
    top: 5px;
    right: -1px;
    display: block;
}

.alert-close:before {
    transform: rotate(45deg);
}

.alert-close:after {
    transform: rotate(135deg);
}

.alert-close:hover:before,
.alert-close:hover:after {
    border-top: solid 2px #d8d8d8;
}

@media (max-width: 767px) and (min-width: 481px) {
    .alert-area {
        left: 100px;
        right: 100px;
    }
}

@media (min-width: 768px) {
    .alert-area {
        width: 350px;
        left: auto;
        right: 0;
    }
}


.alert-message-container {
    text-align: center;
    line-height: 2.5em;
    margin-top: 50px;
}

.alert-message-box {
    font-size: 20px;
    width: 300px;
    border: solid 1px #444;
    padding: 10px 15px;
    outline: none;
    transition: box-shadow 0.1s;
}

.alert-message-box:focus {
    box-shadow: 0 0 15px 2px #888;
}

.alert-message-button {
    font-size: 18px;
    color: white;
    background: #14b9ff;
    width: 250px;
    border: solid 1px #14b9ff;
    padding: 10px 20px;
    margin-top: 5px;
    cursor: pointer;
    outline: none;
    transition: background 0.1s;
}

.alert-message-button:hover,
.alert-message-button:focus,
.alert-message-button:active {
    background: #7dd8ff;
}

/* ALERT RELATED CLASS (END) */


.b-form .b-textarea.error,
.b-form .b-input.error,
.error {
    border-color: red;
}

.dnone {
    display: none
}

.b-pagination__link_dotted {
    display: none;
}

.b-pagination__link.page:not(.b-pagination__link_active) {
    display: none;
}

.b-pagination__link_active.page {
    background-color: white;
}

.b-avail_red .b-avail__item {
    background-color: #f33;
}

.b-product-order__img-wrap.no-border {
    border: none;
}
@media(min-width:1024px){
    .b-product-item.b-product-item_basket .b-product-item__img-wrap{
        height: 100px;
    }
}
@media(min-width:1024px) {
    .b-submenu__dropdown {
        width: 350px;
    }
}

.b-nav-links__link.js-logout{
    color: #b7303f;
}
.b-search__empty-results{
    padding: 16px;
}
#alert-area #send-activate_link{
    display:none;   
}
.b-footer__bottom-r{
    flex-shrink: 0;
}
@media (min-width: 1025px){
    /*.b-submenu__item-wrap {*/
    /*    margin-right: 10px;*/
    /*}*/
    /*.b-header__submenu{*/
    /*    margin-right: 10px;*/
    /*}*/
    /*.b-submenu__link{*/
    /*    font-size: 18px;*/
    /*}*/
    /*.b-search.b-header__search{*/
    /*    max-width: 320px;*/
    /*    margin-right: 0;*/
    /*    margin-left: auto;*/
    /*}*/
    .b-search__dropdown.js-act {
        min-width: 500px;
    }
}

.b-balance{
    z-index: -1;
}

.p-price .sorts-selector.js-act[sort_order="asc"]::before{
    content: none;
}

.p-price .sorts-selector.js-act[sort_order="desc"]::after{
    content: none;
}

.mt-10{
    margin-top: 10px;
}

#snow-animation-container {
    position: fixed;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}


.loading {
    color: transparent!important;
    min-height: 0.8rem;
    pointer-events: none;
    position: relative;
}
.loading::after {
    -webkit-animation: loading .5s infinite linear;
    animation: loading .5s infinite linear;
    border: 0.1rem solid #fff;
    border-radius: 50%;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    display: block;
    height: 0.8rem;
    left: 50%;
    margin-left: -0.4rem;
    margin-top: -0.4rem;
    position: absolute;
    top: 50%;
    width: 0.8rem;
    z-index: 1;
}

@keyframes loading {
	0% {
		transform: rotate(0)
	}
	100% {
		transform: rotate(360deg)
	}
}