/*!
Theme Name: sokolovsky
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: sokolovsky
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

sokolovsky is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */
.js-modal.is-open{
	z-index:9999;
}
.price del {
    text-decoration: none;
}
ins .woocommerce-Price-amount {
    display: none !important;
}

   .alert_block {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: rgba(0, 0, 0, .5);
        overflow: auto;
        z-index: 99999999;
    }

    .alert_thank {
        max-width: 420px;
        width: 100%;
        min-height: 70px;
        margin: 15px;
        position: relative;
        background-color: rgb(255, 255, 255);
    }

    .alert_thank-content {
        padding: 30px;
        text-align: center;
        color: rgb(0, 0, 0);
    }

    .alert_thank-content p {
        font-size: 24px;
        margin-bottom: 15px;
    }


    .alert_thank-close {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 25px;
        height: 25px;
        cursor: pointer;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        z-index: 999;
    }

    .alert_thank-close:before,
    .alert_thank-close:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        margin: auto;
        background-color: rgb(0, 0, 0);
    }

    .alert_thank-close:before {
        width: 15px;
        height: 2px;
    }

    .alert_thank-close:after {
        width: 2px;
        height: 15px;
    }

    .error {
        border: 1px solid red !important;
    }





.catalog-hero__content-filter .catalog-filter {
    overflow-y: unset!important; 
}


.modal_form_input {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #000;
  margin: 0 0 0 0;
  width: 100%; 
  padding: 0 12px;
  height: 38px;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid rgba(226, 226, 226, 1);
}

.modal_form_input::-webkit-input-placeholder {
 color: #555;
}

.modal_form_input::-moz-placeholder {
  color: #555;
}

.modal_form_input:-ms-input-placeholder {
  color: #555;
}

.modal_form_input::placeholder {
  color: #555;
}

.modal {
  position: fixed;
  top: 0px;
  z-index: 21;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  padding: 0 20px;
}

.js-modal {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.js-modal .modal__inner {
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s ease-in-out 0.1s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
}
.js-modal.is-open {
  visibility: visible;
  opacity: 1;
  overflow: auto;
}
.js-modal.is-open .modal__inner {
  opacity: 1;
  transform: translateY(0);
}

.js-modal.is-open:before {
  display: none;
}

.modal {
  background: rgba(0, 0, 0, 0.75);
}

body.is-open {
  overflow: hidden;
}

.modal-close-button {
  z-index: 1;
  position: absolute;
  top: 20px;
  right: 20px;
}

.modal-close-button button {
  display: flex;
}

.modal-close-button button img {
  width: 30px;
}

.modal_border {
  position: relative;
  padding: 35px 35px;
  max-width: 500px;
  margin: 50px auto 0 auto;
  background: #fff;
  border-radius: 10px;
}

.modal_border h2 {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
}

.modal_form p {
  padding: 7px 0 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.modal_form {
  margin-top: 15px;
}

.modal_wrap {
  margin-bottom: 8px;
  display: flex;
}

.modal_block {
  width: 35%;
}

.modal_block:last-child {
  width: 65%;
}

.modal_form_input:hover {
  box-shadow: 0 5px 50px -10px rgba(0, 0, 0, 0.05);
}

.modal_form_input:focus {
    box-shadow: inset 0 0 5px;
}

.modal_textarea {
  height: 80px;
  padding: 6px 12px;
}

.modal_form button {
  width: 120px;
  height: 41px;
  background: rgba(51, 51, 51, 1);
  border: 1px solid rgba(51, 51, 51, 1);
  border-radius: 5px;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
}

.modal_form button:hover {
  background: none;
  color: rgba(51, 51, 51, 1);
}

.modal_button {
  padding: 20px 0 0 0;
  display: flex;
  justify-content: center;
} 









/* Galaxy S8+*/ 
@media screen and (max-width: 480px) {
  	.modal_block:nth-child(1) {
  		display: none;
  	}

  	.modal_block:last-child {
  		width: 100%;
  	}
}
