/*
Theme Name: Bio
Author: Dmitry
Description: Bio
Version: 1.0
*/

.container.text-description,
.container.text-description h2,
.container.text-description h3,
.container.text-description p{
    color: #9d9d9c;
}
.container.text-description p{
    text-align: justify;
}

/* Loading spinner */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffffc9;
    z-index: 999;
    display: none;
    box-shadow: 0px 20px 20px 0px #ffffffc9;
    text-align: center;
}
.loading-spinner {
    background: url(public/img/ajax-loader.gif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 70px;
    height: 70px;
    display: none;
    margin: auto;
}
.ajax_loading .loading-overlay .loading-spinner {
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
}
.ajax_loading {
    position: relative; /* container for .loading-overlay must with position: relative;  */
}
.ajax_loading .loading-overlay {
    display: block;
}
.ajax_loading .loading-spinner {
    display: block;
}

body.main-page {
	height: 100%;
	overflow: hidden;
}

.first-screen {
	height: 100vh;
	min-height: 100vh;
	padding-top: 70px;
	display: flex;
	align-items: center;
}

/* Order form */
.modal-order-form .modal-dialog {
    width: 1000px;
    margin: 30px auto;
}
.modal-main.modal-order-form .modal-dialog {
    padding: 20px;
}
.modal-order-form .modal-body {
    padding: 0;
}
.modal-order-form input[type="text"]{
    margin-bottom: 0px;
}
.modal-main.modal-order-form .modal-dialog .modal-title{
    font-weight: 400;
    text-align: left;
}
.modal-order-form .modal-body-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}
.modal-order-form .order-product-info{
    border: 1px solid #ebebeb;
    padding: 7px 20px;
}
.modal-order-form .product-image{
    max-height: 150px;
    width: 150px;
    object-fit: contain;
}
.modal-order-form .product-title{
    max-width: 230px;
}
.modal-order-form .product-title .title{
    font-size: 24px;
    font-weight: 300;
    color: inherit;
    margin-bottom: 10px;
    display: table-cell;
    vertical-align: middle;
}
.modal-order-form .product-title .title:after{
    content: "";
    display: block;
    width: 65px;
    height: 2px;
    background-color: #60a172;
    margin: 7px 0 7px 0;
}
.modal-order-form .product-title .price{
    font-size: 15px;
    font-weight: 400;
    color: #9d9d9c;
}
.modal-order-form .product-title .price > span,
.modal-order-form .product-specials-info > span{
    color: #60a172;
}
.modal-order-form .product-price{
    font-size: 20px;
    font-weight: 500;
}
.modal-order-form .product-specials-info{
    background-color: #ebebeb;
    padding: 10px;
}
.modal-order-form .order-contact-info .modal-input{
    width: 30%;
}
.modal-order-form .order-additional-wrapp .nds-info,
.modal-order-form .order-additional-wrapp .delivery-info{
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 1.2fr 1fr 1fr;
    margin-bottom: 10px;
}
.modal-order-form .order-total{
    font-size: 30px;
}
.modal-order-form .order-total .order-total-sum,
.modal-order-form .order-total .order-currency{
    color: #60a172;
    font-weight: 500;
}
.modal-order-form .order-totals-info,
.modal-order-form .modal-dialog .button-round{
    margin-top: 0px;
}
.table-container {
      max-width: 100%;
      overflow-x: auto;
    }
	table {
      width: 100%;
      border-collapse: collapse;
    }
@media (max-width: 1000px){
    .modal-order-form .modal-dialog {
        width: 95%;
    }
    .modal-order-form .product-specials{
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 768px){
	div.modal-order-form.fade.in{
		padding: 0;
	}
    .modal-order-form .modal-dialog {
        width: 95%;
		max-height: 70%;
		overflow-y: scroll;
    }
    .modal-order-form .product-specials{
        width: 100%;
        text-align: center;
    }
    .modal-order-form .order-product-info > div{
        margin: 5px 0;
    }
    .modal-order-form .product-image,
    .modal-order-form .product-title{
        width: 50%;
        max-width: none;
    }
    .modal-order-form .quantity-input,
    .modal-order-form .product-price,
    .modal-order-form .product-specials{
        width: 100%;
        text-align: center;
    }
    .modal-order-form .order-contact-info .modal-input {
        width: 100%;
        margin: 5px 0;
    }
    .modal-order-form .order-totals-info > div{
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 550px){
    .modal-order-form .product-image{
        width: 30%;
    }
    .modal-order-form .product-title{
        width: 65%;
        max-width: none;
    }
    .modal-order-form .order-total {
        font-size: 24px;
    }
    .modal-order-form .modal-body-row.order-additional{
        justify-content: center;
    }
    .modal-order-form .order-additional-wrapp .nds-info, 
    .modal-order-form .order-additional-wrapp .delivery-info{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .modal-order-form .order-additional-wrapp > * > label{
        width: 100%;
        text-align: center;
    }
}

/* Quantity buttons */
.qty-group{
    border-color: #cbcbcb;
    width: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #dadada;
    background-color: #fff;
    height: 45px;
    margin: auto;
}
.qty-group input[name="quantity"]{
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    width: 55px;
    border: none;
    text-align: center;
    color: #2d2d2d;
    padding: 7px 5px 5px;
    background-color: rgba(255,255,255,0);
}
.qty-group .button {
    position: relative;
    width: 35px;
    height: 43px;
    display: inline-block;
    vertical-align: middle;
    background-color: #ebebeb;
}
.qty-group .button:hover{
    background-color: #c8c8c8;
}
.qty-group .button:before {
    width: 10px;
    height: 2px;
}
.qty-group .button:after {
    height: 10px;
    width: 2px;
}
.qty-group .button:before, 
.qty-group .button:after {
    position: absolute;
    content: "";
    background-color: #010101;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.qty-group .button.minus {
    border-right: 1px solid #cbcbcb;
}
.qty-group .button.plus {
    border-left: 1px solid #cbcbcb;
}
.qty-group .button.minus:after {
    background-color: rgba(255,255,255,0);
}

/* Modal Notification */
.modal-notification .message-text{
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    margin: 3em 0;
}

/* Calc block */
.container.calc-block{
    padding: 3em 1em 1em 1em;
}
.container.calc-block > h2{
    margin: 0px 0 30px 0;
}
@media screen and (max-width: 767px){
    .category .container.calc-block{
        width: 95%;
    }
}

/*   Page 404   */
body.error404 .header.page{
    margin-bottom: 0;
}
body.error404 main.error-page-404{
    background: url('public/img/background.jpg') center center;
    height: 550px;
    padding-top: 15px;
}
.server-error {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 450px;
}
.server-error__content {
    display: inline-block;
    vertical-align: top;
    font-family: Roboto Condensed,sans-serif;
    margin: 2em 0 4em;
}
.server-error__code {
    color: #708795;
    font-size: 14em;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.7rem;
}
.server-error__text {
    color: #2a333d;
    font-size: 1.2em;
    line-height: 1.5em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-align: center;
}
.server-error__actions{
    text-align: center;
}
@media only screen and (max-width: 480px){
    .server-error {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }
    .server-error__text {
        font-weight: 500;
    }
	.text-description h2 {font-size: 25px;}
}
@media only screen and (max-width: 480px){
    .server-error__code {
        font-size: 8em;
        letter-spacing: 0.3rem;
    }
}

#bingc-passive {
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 99999999 !important;
    overflow: visible !important;
}

.side-menu-active .amo-button-holder{
    display: none;
}


/* "Important Info" buttons and modals  */
.phones .important-info-btn {
    max-width: 150px;
    margin: 30px auto 10px auto;
    /*display: block;*/
	display: none;
    text-align: center;
    border-color: transparent !important;
    padding: 8px 6px;
    color: #fff !important;
    border-radius: 2px;
    background-image: -moz-linear-gradient(34deg, #60a172 0%, #bdcf32 100%);
    background-image: -webkit-linear-gradient(34deg, #60a172 0%, #bdcf32 100%);
    background-image: -ms-linear-gradient(34deg, #60a172 0%, #bdcf32 100%);
}
.important-info-btn.info-mobile{
    display: none;
}
.important-info-btn > a {
	color: #fff!important;
}

/*
.important-info-btn:before{
    content: '';
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 180px;
    height: 60px;
    cursor: pointer;
}
*/

.important-info-btn.info-img-ru:before{
    background-image: url(public/icons/pc-version-ru.png);
}
.important-info-btn.info-img-uk:before{
    background-image: url(public/icons/pc-version-uk.png);
}
.important-info-btn.info-img-en:before{
    background-image: url(public/icons/pc-version-en.png);
}

.js-modal-important-info .modal-dialog{
    width: 70%;
}
.js-modal-important-info .modal-dialog .modal-body{
    font-size: 20px;
    line-height: 28px;
}
.js-modal-important-info .modal-dialog button.modal-close{
    font-size: 40px;
    color: #60a172;
}

@media screen and (max-width: 767px){
    .phones .important-info-btn{
        display: none;
    }
    .important-info-btn.info-mobile{
        max-width: 150px;
		margin: 7px 0 0 auto;
		/*display: block;*/
		display: none;
		text-align: center;
		border-color: transparent !important;
		padding: 8px 6px;
		color: #fff !important;
		border-radius: 2px;
		background-image: -moz-linear-gradient(34deg, #60a172 0%, #bdcf32 100%);
		background-image: -webkit-linear-gradient(34deg, #60a172 0%, #bdcf32 100%);
		background-image: -ms-linear-gradient(34deg, #60a172 0%, #bdcf32 100%);
    }
    .important-info-btn:before{
        width: 100px;
        height: 40px;
    }
    .important-info-btn.info-mobile.info-img-ru:before{
        background-image: url(public/icons/mob-version-ru.png);
    }
    .important-info-btn.info-mobile.info-img-uk:before{
        background-image: url(public/icons/mob-version-uk.png);
    }
    .important-info-btn.info-mobile.info-img-en:before{
        background-image: url(public/icons/mob-version-en.png);
    }
    .js-modal-important-info .modal-dialog {
        width: auto;
    }
    .js-modal-important-info .modal-dialog .modal-title h2{
        font-size: 25px;
        margin-top: 35px;
    }
    .js-modal-important-info .modal-dialog .modal-body {
        font-size: 16px;
        line-height: 25px;
    }
}

/* Form Export */

.button-round.btn-orange-sm {
    background-color: #f8ac00;
    border-bottom: 0px solid #d49300;
}
.button-round.btn-orange-sm:hover {
    background-color: #ffba1d;
    border-bottom-color: #f8ac00;
}
.button-round[disabled]{
    background-color: #c4c4c4;
    border-bottom: 0px solid #c4c4c4;
    cursor: not-allowed;
}
.button-round[disabled]:hover{
    background-color: #c4c4c4;
    border-bottom: 0px solid #c4c4c4;
}

[data-form-step] {
    display: none;
}

.form-export .step-num {
    color: #60a172;
    font-size: 20px;
}

.form-export .step-heading {
    margin: 30px 0;
    text-align: center;
    font-size: 26px;
    line-height: 28px;
}

.form-export .step-body {
    margin: 30px 0 50px 0;
}

.form-export .step-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.form-export [data-form-step="1"] .step-buttons {
    justify-content: center;
}

.form-export .step-form-input {
    max-width: 70%;
    margin: 0 auto 20px auto;
}

.form-export input[type="text"], 
.form-export input[type="tel"], 
.form-export input[type="email"],
.form-export select,
.form-export textarea{
    margin-bottom: 5px;
}

.form-export .jq-selectbox {
    width: 100%;
}
.form-export .jq-selectbox li.disabled {
    color: #c4c4c4;
}

.form-export .error-hint{
    display: none;
    color: #f44336;
    font-size: 13px;
    line-height: 14px;
}

.form-export .has-error .error-hint {
    display: block;
}

.modal-form-export-success .modal-body {
    margin: 20px 0;
    font-size: 20px;
    text-align: center;
    color: #60a172;
}

@media screen and (max-width: 500px) {
    .form-export .step-heading {
        font-size: 18px;
        line-height: 22px;
    }
    .form-export .step-num {
        font-size: 16px;
    }
    .form-export .step-form-input {
        max-width: 100%;
    }
    .form-export .step-buttons {
        flex-direction: column-reverse;
        align-items: center;
    }
}

/* Warehouse Dropdown */
.geo-warehouse {
    display: inline-block;
    float: right;
}
.geo-link {
    display: inline-block;
}
.geo-link img{
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-right: 15px;
}
.dropdowns .warehouse-select {
    position: relative;
    display: inline-block;
    float: right;
}

.dropdowns .warehouse-select .dropdown-toggle {
    width: auto;
    padding: 4px 30px 4px 10px;
    color: #fff !important;
    border-radius: 2px;
    background-image: -moz-linear-gradient(34deg, #60a172 0%, #bdcf32 100%);
    background-image: -webkit-linear-gradient(34deg, #60a172 0%, #bdcf32 100%);
    background-image: -ms-linear-gradient(34deg, #60a172 0%, #bdcf32 100%);
    border: none;
}
.dropdowns .warehouse-select .dropdown-menu > li > a {
    padding: 2px 12px;
}
.caret-down {
    content: '';
    position: absolute;
    top: 12px;
    right: 10px;
    border-top: 7px solid rgb(255, 255, 255);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

@media screen and (max-width: 767px) {
    .geo-warehouse {
        margin-top: 10px;
    }
    .geo-link img {
        width: 25px;
        height: 25px;
        object-fit: contain;
        margin-right: 10px;
    }
    .header .dropdowns .warehouse-select .dropdown-toggle {
        font-size: 12px;
        padding: 4px 20px 4px 4px;
    }
    .dropdowns .warehouse-select .dropdown-menu > li > a {
        font-size: 12px;
        padding: 2px 12px;
    }
    .caret-down {
        top: 10px;
        right: 6px;
    }
}

/* Main nav menu fix */
nav ul.main-menu-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

nav ul.main-menu-header > li {
    margin: 0px;
}

nav ul.main-menu-header:before, 
nav ul.main-menu-header:after {
    /*display: table;*/
    display: none;
}

/* Certificate slider */
.certificate-slider-wrapp {
    padding: 3em 1em;
}

.certificate-slider-title {
    margin-top: 0;
    margin-bottom: 20px;
}

.certificate-slider-description {
    margin-bottom: 20px;
    color: #9d9d9c;
}

/* Special offer */
.container.special-offer {
    padding: 1em 1em 3em 1em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.container.special-offer > * {
    max-width: 50%;
}

.special-offer-title {
    margin-top: 0;
    margin-bottom: 30px;
    text-align: left;
	text-transform: uppercase;
}

.special-offer-text {
    margin-bottom: 30px;
    font-size: 18px;
    color: #9d9d9c;
}

.special-offer-actions {
    text-align: left;
}

.special-offer-image {
    background-image: url(public/img/bg-special-offer.png);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .container.special-offer > * {
        width: 100%;
        max-width: 100%;
    }
    .special-offer-image {
        display: none;
    }
}

/* Category FAQ Block */
.category-faq {
    padding: 3em 1em;
}

.category-faq-accordion {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.category-faq-list {
    width: 65%;
}

.category-faq-img {
    width: 35%;
    background-image: url(public/img/logo-grey.png);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: bottom;
    background-size: contain;
}

.category-faq-title {
    margin-bottom: 25px;
	text-transform: capitalize;
}

.category-faq-item {
    width: 100%;
    margin: 10px 0;
}

.category-faq-item-question {
    padding: 12px 12px 12px 40px;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    background-image: -moz-linear-gradient(90deg, #bdcf32 0%, #60a172 100%);
    background-image: -webkit-linear-gradient(180deg, #bdcf32 0%, #60a172 100%);
    background-image: -ms-linear-gradient(90deg, #bdcf32 0%, #60a172 100%);
    position: relative;
    cursor: pointer;
}

.faq-item-question-text {
    display: inline-block;
    width: calc(100% - 50px);
}

.category-faq-item-question:after {
	content: '+';
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 15px;
  top: calc(50% - 20px);
  font-size: 30px;
  line-height: 1;
}

.category-faq-item-question.active:after{
    transform: rotate(45deg);
}

.category-faq-item-answer {
    padding: 5px 10px 20px 10px;
    font-size: 16px;
    color: #9d9d9c;
}

@media screen and (max-width: 768px) {
    .category-faq-item-question {
        padding: 12px;
        font-size: 16px;
    }
    .category-faq-item-answer {
        padding: 5px 5px 10px 5px;
        font-size: 14px;
    }
}

@media screen and (max-width: 991px) {
    .category-faq-list {
        width: 100%;
    }

    .category-faq-img {
        display: none;
    }
}

/* Email Subscribe footer form */
.email-subscribe {
    margin-left: 8%;
    margin-bottom: 2em;
}

.subscribe-form-body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.subscribe-form-body > * {
    min-width: 50%;
    padding: 5px;
}

.subscribe-form-info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: left;
    align-items: center;
}

.subscribe-form-info > img {
    display: inline-block;
    width: 50px;
    height: auto;
    object-fit: contain;
    margin-right: 10px;
}

.subscribe-form-info > span {
    display: inline-block;
    color: #9d9d9c;
}

.subscribe-form-input {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.subscribe-form-input input[type="email"] {
    margin: 0;
}

.subscribe-form-input input[type="submit"] {
    border-radius: 3px;
    height: 45px;
}

.modal-subscribe-message .modal-body {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    padding: 30px 0;
}

@media screen and (max-width: 991px) {
    .subscribe-form-body > * {
        min-width: 100%;
    }
    .subscribe-form-body {
        flex-wrap: wrap;
    }
}


@media screen and (max-width: 767px) {
	.container.special-offer,
	.container.bio-reviews-slider-wrapp,
	.container.category-faq,
	.container.certificate-slider-wrapp,
	.container.text-description {
		width: 95%;
	}
}
