﻿/*@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');*/
/*#region Mixin  */
/*#endregion */
/*#region page-overlay */
.page-overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  position: fixed;
  animation: fade, scale-x-y 0.25s;
  cursor: pointer;
  /*background: rgba(36,54,69,0.75);*/
  background: rgba(0, 0, 0, 0.75);
}
.page-overlay.white {
  background: rgba(255, 255, 255, 0.66);
}
.page-overlay .row {
  justify-content: center;
}
.page-overlay .modal-box {
  width: 100%;
  background: #fff;
  position: relative;
  /*max-height: 98%;*/
  text-align: left;
  box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
  display: inline-block;
  vertical-align: middle;
  color: #666;
  line-height: 25px;
  font-weight: 400;
  border-radius: 25px;
  animation: open 0.5s;
  transition: 0.5s;
}
.page-overlay .modal-box.context-text-wrapper {
  line-height: 30px;
}
.page-overlay .modal-box.context-text-wrapper h2 {
  margin-bottom: 0.5em;
}
.page-overlay .modal-box.context-text-wrapper h2:not(:first-child) {
  margin-top: 1em;
}
.page-overlay .modal-box.hide {
  transform: translateY(100%);
  opacity: 0;
}
.page-overlay .modal-box button:not(.btn_trans).close {
  position: absolute;
  right: -0.3em;
  top: -0.3em;
  background: none;
  color: #000;
  font-size: 1.7em;
  font-weight: 600;
  z-index: 999;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #029e9d;
  border: none;
}
.page-overlay .modal-box header {
  height: inherit;
  border-bottom: 1px solid #f1f1f1;
  padding: 0.75em 2em;
  font-size: 1.25em;
  font-weight: 500;
  color: #333;
}
.page-overlay .modal-box section {
  overflow: auto;
}
.page-overlay .modal-box section ::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
.page-overlay .modal-box section .loader-wrapper {
  padding: 10em 0;
}
.page-overlay .modal-box section .loader-wrapper .loader {
  margin: auto;
  border: 5px solid #EAF0F6;
  border-radius: 50%;
  border-top: 5px solid #297cbb;
  width: 50px;
  height: 50px;
  animation: spinner 1s linear infinite;
}
.page-overlay .modal-box section aside {
  padding: 2.5em;
}
.page-overlay .modal-box section aside h2.title {
  font-size: 30px !important;
}
.page-overlay .modal-box section aside.scroll {
  padding: 2em 35px;
  line-height: 30px;
  max-height: 700px;
  overflow: auto;
}
.page-overlay .modal-box section aside.scroll ::-webkit-scrollbar-thumb {
  background-color: #029e9d;
}
.page-overlay .modal-box section aside.scroll h2 {
  font-size: 1.4em;
  font-weight: 500;
  color: #333;
  margin-bottom: 1em;
}
.page-overlay .modal-box section aside.scroll h2:not(:first-child) {
  margin-top: 1em;
}
.page-overlay .modal-box section aside ul li.toggle {
  display: none;
}
.page-overlay .modal-box section aside button:not(.close) {
  width: 100%;
  background: #029e9d;
  color: #fff;
  height: 50px;
  margin-top: 2em;
  text-transform: none;
  font-weight: 500;
}
.page-overlay .modal-box footer {
  border-top: 1px solid #f1f1f1;
  padding: 0.75em 2em;
  display: flex;
  justify-content: flex-end;
}

/*#endregion */
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes open {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scale-x-y {
  0% {
    transform: scaleX(0.5) scaleY(0.5);
  }
  100% {
    transform: scaleX(1) scaleY(1);
  }
}
