@import url(root.css);

body.lock,
html.lock {
  overflow: hidden
}

.popup_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, .5);
  z-index: -100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.popup_wrapper::before {
  content: '';
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: fixed;
  top: var(--pptop);
  left: var(--ppright);
  -webkit-transform: translate(-50%, -100%) translateY(25%);
  -ms-transform: translate(-50%, -100%) translateY(25%);
  transform: translate(-50%, -100%) translateY(25%);
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuNzA3MDMgMC4yOTI5NjlMMC4yOTI5NjkgMS43MDcwM0w2LjU4NTk0IDhMMC4yOTI5NjkgMTQuMjkzTDEuNzA3MDMgMTUuNzA3TDggOS40MTQwNkwxNC4yOTMgMTUuNzA3TDE1LjcwNyAxNC4yOTNMOS40MTQwNiA4TDE1LjcwNyAxLjcwNzAzTDE0LjI5MyAwLjI5Mjk2OUw4IDYuNTg1OTRMMS43MDcwMyAwLjI5Mjk2OVoiIGZpbGw9IiNGRjNCMzAiLz4KPC9zdmc+Cg==") center/cover no-repeat;
  width: 16px;
  height: 16px;
  display: block;
  border: none;
  outline: 0;
  cursor: pointer;
  z-index: 700;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .15s ease-in-out;
  -o-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
  will-change: opacity, visibility, transform;
}

@media screen and (max-width:767px) {
  .popup_wrapper.smbot {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
  }
}

.popup_wrapper.active::before {
  opacity: 1;
  visibility: visible;
  transform: translate(-100%, calc(-100% - 4px));
  -webkit-transform: translate(-100%, calc(-100% - 4px));
  -moz-transform: translate(-100%, calc(-100% - 4px));
  -ms-transform: translate(-100%, calc(-100% - 4px));
  -o-transform: translate(-100%, calc(-100% - 4px));
}

@supports ((-webkit-backdrop-filter:none) or (backdrop-filter:none)) {
  .popup_wrapper {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, .5)
  }
}

.popup_wrapper.active {
  pointer-events: unset;
  z-index: 700;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-user-select: unset;
  -moz-user-select: unset;
  -ms-user-select: unset;
  user-select: unset
}

.popup_wrapper.search {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background-color: transparent;
  z-index: 400;
}

.popup_wrapper.search::before {
  display: none;
}

.popup {
  position: relative;
  padding: 40px;
  background: white;
  color: black;
  border: 1px solid white;
  min-width: 760px;
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-height: 90vh;
  -webkit-transform: translateY(25%);
  -ms-transform: translateY(25%);
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
  z-index: -100;
  -webkit-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-shadow: 0 6px 35px 15px rgba(0, 0, 0, .15);
  box-shadow: 0 6px 35px 15px rgba(0, 0, 0, .15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: auto;
  -moz-transform: translateY(25%);
  -o-transform: translateY(25%);
}

.popup_wrapper.smbot .popup {
  max-height: calc(100vh - var(--headerheight));
}

.popup_wrapper.smbot .popup.full-h {
  max-height: 100vh;
  height: 100%;
  z-index: 1000;
}

.popup_wrapper.smbot .popup {
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%)
}

.popup_wrapper.smbot .popup.active {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.popup.unpadding {
  padding: 0 !important;
}

.popup.p4860 {
  padding: 48px 60px;
}

.popup.widefull {
  max-width: 100%;
  width: 100%;
}

.popup_top {
  padding: 40px 60px 32px;
}

.popup_wrapper.search .popup {
  min-height: calc(100vh - var(--headerheight));
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 100%;
}

.popup.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  z-index: 800;
  pointer-events: all;
  -webkit-user-select: unset;
  -moz-user-select: unset;
  -ms-user-select: unset;
  user-select: unset
}

.popup_wrapper.search .popup.active {
  z-index: 500;
}

.close_popup {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  top: -35px;
  right: 4px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuNzA3MDMgMC4yOTI5NjlMMC4yOTI5NjkgMS43MDcwM0w2LjU4NTk0IDhMMC4yOTI5NjkgMTQuMjkzTDEuNzA3MDMgMTUuNzA3TDggOS40MTQwNkwxNC4yOTMgMTUuNzA3TDE1LjcwNyAxNC4yOTNMOS40MTQwNiA4TDE1LjcwNyAxLjcwNzAzTDE0LjI5MyAwLjI5Mjk2OUw4IDYuNTg1OTRMMS43MDcwMyAwLjI5Mjk2OVoiIGZpbGw9IiNGRjNCMzAiLz4KPC9zdmc+Cg==") center/cover no-repeat;
  width: 16px;
  height: 16px;
  display: block;
  border: none;
  outline: 0;
  cursor: pointer
}

@media screen and (max-width:991px) {
  .popup {
    min-width: 767px
  }
}

@media screen and (max-width:767px) {
  .popup {
    min-width: 575px
  }
}

@media screen and (max-width:575px) {
  .popup {
    min-width: 100%
  }
}

