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

.modal-shield {
  position: fixed;
  display: block;
  height: 100%;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: rgba(255,255,255,0.6);
  z-index: 100;
  opacity:0;
  right:200%;
  transition: 0.3s opacity 0s, 0s right 0.3s;
}

.modal {
	position: fixed;
	top: 100px;
	width: 100%;
	height: calc(100vh - 200px);
	display: block;
	max-width: 100%;
	z-index: 1000;
	opacity:0;
	right:100%;
	left:auto;
  transition: 0.3s opacity 0s, 0s right 0.3s;
}
@media(max-width:1199px){
    .modal {
        top:0px;
    	height: 100vh;
    }
}

.modal__inner {
	background: white;
	position: relative;
	width: 1800px;
	height: 100%;
	min-height: 100px;
	margin: 0 auto;
	max-width: calc(100% - 210px);
	padding: 50px;
}
@media(max-width:1199px){
    .modal__inner {
	    max-width: 100%;
	    padding:50px;
    }
}
@media(max-width:767px){
    .modal__inner {
	    padding:50px 20px 20px;
    }
}

.modal__inner iframe {
	width: 100%;
	height: 100%;
	border: 0px;
}


.modal__close {
	position: absolute;
	top: 15px;
	right: 8px;
	display: block;
	margin: 0;
	cursor: pointer;
	color: #333333;
	text-indent: -9000em;
	height: 41px;
	width: 41px;
	font-size: 0;
	padding: 10px;
}
.modal__close::before, 
.modal__close::after {
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	background: grey;
	transform: rotate(45deg);
	transform-origin: 59% 2px;
}
.modal__close::before {
	transform: rotate(-45deg);
}
.modal__close:hover {
  color: #688197; }
  


.modal-on .modal-shield {
  opacity: 1;
  right: 0;
  transition: 0.3s opacity 0s, 0s right 0s;
}
.modal-on[data-modal="donate"] .modal--donate,
.modal--donate-custom.on {
	right: 0;
	opacity: 1;
    transition: 0.3s opacity 0s, 0s right 0s;
}










.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  z-index: -1;
  opacity: 0;
  transition: 0.3s all; }

.loader--loading .loader {
  z-index: 9000;
  opacity: 1; }

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px; }

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #676E73;
  border-color: #676E73 transparent #676E73 transparent;
  animation: lds-dual-ring 1.2s linear infinite; }


.loader--loading .basket__popup .loader {
  z-index: 9000;
  opacity: 1; }

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }