/********aside widget**********/
.aw-modals, .aw-wrapper {z-index: 99;position: relative;}

.btn-blick {
  position: relative;
  overflow: hidden;
}

.btn-blick:after {
  content: "";
  width: 25px;
  height: 150px;
  position: absolute;
  left: -70px;
  top: -30px;
  background-color: #fff;
  background: linear-gradient(223deg, rgba(255, 255, 255, 0.25) 6%, rgba(255, 255, 255, 0.75) 70%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation-name: blick;
  animation-name: blick;
  -webkit-animation-duration: 6s;
  animation-duration: 6s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  pointer-events: none;
}

.btn-blick:hover:after {
  -webkit-animation: none;
  animation: none;
}

.aw-wrapper.visible .aw {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.aw {
  font-family: sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  z-index: 10;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 1rem;
}

.aw>*,
.aw>*:after,
.aw>*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.aw img {
  max-width: 100%;
  height: auto;
  display: block;
}

.aw__close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #2b2e37;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.aw__close:hover img {
  -webkit-filter: invert(0.5);
  filter: invert(0.5);
}

.aw__close img {
  width: 12px;
  height: 12px;
  -o-object-fit: cover;
  object-fit: cover;
}

.aw__content .aw__option+.aw__option {
  margin-top: 8px;
}

.aw__option {
  padding: 8px 6px;
  width: 80px;
  min-height: 80px;
  border-radius: 5px 0 0 5px;
  background-color: #2b2e37;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.aw__option img {
  width: 18px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.aw__option span {
  text-align: center;
  font-weight: 500;
  font-size: 0.75em;
  line-height: 1.3;
}

.aw__option:hover {
  background-color: #fff;
  color: #000;
}

.aw__option:hover img {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.aw-modal {
  display: none;
  position: fixed;
  font-family: sans-serif;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.aw-modal .aw-modal__content {
  position: relative;
  max-width: 400px;
  padding: 30px 25px;
  background-color: #fff;
  width: 100%;
}

.aw-modal .aw-modal__title {
  font-weight: 700;
  margin-bottom: 0.75em;
  font-size: 20px;
}

.aw-modal .aw-modal__subtitle {
  font-size: 14px;
  margin-bottom: 24px;
  text-align: center;
}

.aw-modal .aw-modal__close {
  position: absolute;
  right: 14px;
  top: 14px;
  color: black;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  font-size: 45px;
  z-index: 5;
  cursor: pointer;
  line-height: 0.6;
}

.aw-modal.aw-modal--order .aw-modal__content .aw-modal__title {
  text-align: center;
}

.aw-form label,
.aw-downl-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 14px;
}

.aw-form__item,
.aw-downl-form__item {
  position: relative;
}

.aw-form input,
.aw-downl-form input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 16px;
  padding-right: 16px;
  display: block;
  width: 100%;
  height: 45px;
  background-color: #f6f6f6;
  border: none;
  font-size: 16px;
  color: black;
  outline: none;
}

.aw-form input:focus,
.aw-downl-form input:focus {
  outline: none;
}

.aw-form input::-webkit-input-placeholder,
.aw-downl-form input::-webkit-input-placeholder {
  font-family: inherit;
  font-size: inherit;
  color: black;
}

.aw-form input::-moz-placeholder,
.aw-downl-form input::-moz-placeholder {
  font-family: inherit;
  font-size: inherit;
  color: black;
}

.aw-form input:-ms-input-placeholder,
.aw-downl-form input:-ms-input-placeholder {
  font-family: inherit;
  font-size: inherit;
  color: black;
}

.aw-form input::-ms-input-placeholder,
.aw-downl-form input::-ms-input-placeholder {
  font-family: inherit;
  font-size: inherit;
  color: black;
}

.aw-form input::placeholder,
.aw-downl-form input::placeholder {
  font-family: inherit;
  font-size: inherit;
  color: black;
}

.aw-form .aw-form__item,
.aw-downl-form .aw-form__item {
  margin-bottom: 12px;
}

.aw-form .aw-form-btn,
.aw-downl-form .aw-form-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  min-width: 100%;
  background-color: #2b2e37;
  border: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: white;
  padding-left: 35px;
  font-size: 16px;
  font-weight: 700;
  padding-right: 35px;
  cursor: pointer;
}

.aw-form .aw-form-btn>*+*,
.aw-downl-form .aw-form-btn>*+* {
  margin-left: 10px;
}

.aw-form .aw-form-btn:hover,
.aw-downl-form .aw-form-btn:hover {
  background-color: #f05c62;
}

.aw-modal.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.aw-modal .aw-modal__content {
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
}

.aw-modal.visible .aw-modal__content {
  -webkit-animation-name: scale;
  animation-name: scale;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.aw-wrapper.aw-collapse .aw__option {
  height: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.aw-wrapper.aw-collapse .aw__close {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.aw-wrapper .form-select {
  position: relative;
}

.aw-wrapper .form-select * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.aw-wrapper .form-select .form-select__icon {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 4;
  width: 45px;    height: auto;
  padding-right: 10px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5 5.99997L0 0.999969L0.707 0.292969L5 4.58597L9.293 0.292969L10 0.999969L5 5.99997Z' fill='%23333333'/%3e%3c/svg%3e");
  background-position: center;
  background-size: 12px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.aw-wrapper .form-select input {
  height: 100%;
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  padding-left: 15px;
  font-size: 16px;
  line-height: 14px;
  padding-right: 45px;
  height: 50px;
  color: black;
}

.aw-wrapper .form-select__options {
  margin: 0;
  padding: 0;
  width: 100%;
  z-index: 5;
  position: absolute;
  left: 0;
  /*top: 100%;*/
  background: #fff;
  list-style-type: none;
  max-height: 185px;
  overflow: hidden;
  overflow-y: auto;
  display: none;
}

.aw-wrapper .form-select__options::-webkit-scrollbar {
  display: block;
  width: 5px;
  height: 20px;
}

.aw-wrapper .form-select__options::-webkit-scrollbar-thumb {
  width: 5px;
  height: 20px;
  border-radius: 10px;
  background-color: #e7e7e7;
}

.aw-wrapper .form-select__options li {
  font-size: 16px;
  line-height: 1.3;
  color: #8F8F8F;
  cursor: pointer;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 45px;
  text-align: left;
}

.aw-wrapper .form-select__options li:hover {
  color: black;
  background-color: #f6f6f6;
}

.aw-wrapper .form-select__options li.active {
  font-weight: 700;
  color: #000;
}

.aw-wrapper .form-select__options.active {
  display: block;
  border-radius: 0 0 12px 12px;
  border: 1px solid #e7e7e7;
  border-top: 0;
}

.aw-wrapper .form-select__icon.rotate {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.aw-modal.aw-modal-downl .aw-modal__content {
  max-width: 1050px;
  border-radius: 0;
  background-size: cover;
  padding: 50px;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  color: #fff;
  background-repeat: no-repeat;
}

.aw-modal.aw-modal-downl .aw-modal__content:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.aw-modal.aw-modal-downl .aw-modal__content>* {
  z-index: 2;
}

.aw-modal.aw-modal-downl .aw-modal__content .aw-modal__close {
  color: #fff;
  z-index: 5;
}

.aw-modal.aw-modal-downl .aw-modal__content .aw-modal__title {
  font-size: 40px;
  line-height: 1.4;
  margin-bottom: 1em;
  max-width: 420px;
  position: relative;
  z-index: 2;
}

.aw-modal.aw-modal-downl .aw-modal__content .aw-modal__subtitle {
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
  text-align: left;
  position: relative;
  margin-bottom: 1.5em;
}

.aw-modal.aw-modal-downl .aw-modal__content .aw-modal__decore {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  position: absolute;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 50px;
  left: 50%;
}

.aw-modal.aw-modal-downl .aw-modal__content .aw-modal__decore p {
  font-size: 10px;
  line-height: 1.5;
  color: #2b2e37;
  text-align: center;
  position: relative;
  font-weight: 700;
  z-index: 2;
  padding-top: 10px;
}

.aw-modal.aw-modal-downl .aw-modal__content .aw-modal__decore p:after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg class='circle-arrow' width='18' height='20' viewBox='0 0 18 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16.7251 11.4014C16.7251 15.439 13.4884 18.7127 9.50133 18.7127C5.51426 18.7127 2.27751 15.4349 2.27751 11.3973C2.27751 7.35977 5.51426 4.08607 9.50133 4.08607C10.0681 4.08607 10.6348 4.15478 11.1856 4.28815L8.86276 6.64037L9.76474 7.55377L13.4924 3.77487L9.76873 0L8.86276 0.913404L10.8303 2.89379C6.19274 2.1461 1.83849 5.35109 1.10414 10.0474C0.369784 14.7438 3.53469 19.1492 8.1723 19.8928C12.8099 20.6365 17.1602 17.4315 17.8945 12.7351C17.9624 12.2946 17.9983 11.846 17.9983 11.3973H16.7251V11.4014Z' fill='%23e9161f'%3e%3c/path%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
}

.aw-modal.aw-modal-downl .aw-modal__content .aw-modal__decore p span {
  display: block;
}

.aw-modal.aw-modal-downl .aw-modal__content .aw-modal__decore img {
  position: absolute;
  width: 95px;
  height: 95px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  z-index: 1;
  -webkit-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}

@-webkit-keyframes blick {
  0% {
    left: -40px;
  }

  60%,
  100% {
    left: 115%;
  }
}

@keyframes blick {
  0% {
    left: -40px;
  }

  60%,
  100% {
    left: 115%;
  }
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.aw-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 16px;
}

.aw-modal .aw-downl-form {
  position: relative;
}

.aw-modal .aw-downl-form .aw-form__item {
  margin-bottom: 0;
}

.aw-modal .aw-downl-form input,
.aw-modal .aw-downl-form .aw-form-btn {
  height: 70px;
}

label.aw-confirm-checkbox {
  padding-left: 0;
  margin-top: 16px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 0;
}

label.aw-confirm-checkbox input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

label.aw-confirm-checkbox a {
  color: red;
  text-decoration: none;
}

label.aw-confirm-checkbox span.fake-chbx {
  overflow: hidden;
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-image: url("../img/aw/check-icon.svg");
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-position: center;
  cursor: pointer;
  background-color: #2b2e37;
  background-repeat: no-repeat;
  background-size: 0;
}

label.aw-confirm-checkbox input[type=checkbox]:checked+.fake-chbx {
  background-size: 10px;
}

@media (max-width: 991px) {
  .aw-modal.aw-modal-downl .aw-modal__content .aw-modal__title {
    font-size: 30px;
  }

  .aw-modal.aw-modal-downl .aw-modal__content .aw-modal__subtitle {
    font-size: 18px;
  }

  .aw-modal.aw-modal-downl .aw-modal__content .aw-modal__subtitle {
    font-size: 16px;
    text-align: left;
  }

  .aw-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .aw__content .aw__option+.aw__option {
    margin-top: 5px;
  }

  .aw__option img {
    width: 16px;
  }

  .aw__option {
    width: 70px;
    height: 70px;
    min-height: 70px;
    padding: 5px;
  }

  .aw__option span {
    font-size: 10px;
  }

  .aw-modal.aw-modal-downl .aw-modal__content {
    padding: 25px 20px 100px;
  }

  .aw-modal.aw-modal-downl .aw-modal__content .aw-modal__title {
    font-size: 26px;
    text-align: center;
  }

  .aw-modal.aw-modal-downl .aw-modal__content .aw-modal__decore {
    top: auto;
    bottom: 20px;
    width: 80px;
    height: 80px;
  }

  .aw-modal.aw-modal-downl .aw-modal__content .aw-modal__decore img {
    width: 75px;
    height: 75px;
  }

  .aw-form__grid {
    grid-template-columns: 1fr;
  }

  .aw-modal .aw-downl-form input,
  .aw-modal .aw-downl-form .aw-form-btn {
    height: 50px;
  }
}