/*-----------------------
  General 
-----------------------*/
/* Define status bar size */
/* Bottom settings sections */
/* Define general spaces */
/*@media screen and (min-width: 576px) { 
	$screeny-padding: 5px;
}
@media screen and (min-width: 768px) { 
	$screeny-padding: 10px;
}
@media screen and (min-width: 992px) { 
	$screeny-padding: 15px;
}
@media screen and (min-width: 1200px) { 
	$screeny-padding: 20px;
}*/
/* Define global radius */
/* Define size of arrows */
/* Define general transition time */
/* Define general border size */
/* Define background image blur */
body.modal-open {
  position: fixed;
}

.modal {
  background: rgba(0, 0, 0, 0.95);
  z-index: 9000;
  overflow-y: auto !important;
  -webkit-transition: calc(0.3s*1) ease-in-out;
  -o-transition: calc(0.3s*1) ease-in-out;
  transition: calc(0.3s*1) ease-in-out;
}

.modal-header,
.modal-body,
.modal-footer {
  border: 0;
  padding: 1rem;
  color: #ffffff;
}

.modal .modal-header {
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  height: 80px;
  background: transparent !important;
}

.modal .modal-body {
  border-radius: 0px 10px;
}

.rounded-border .modal .modal-body {
  border-radius: 10px !important;
}

.square-border .modal .modal-body {
  border-radius: 0 !important;
}

.modal:not(.transparent) .modal-body:not(.transparent) {
  background: #303133;
  background-image: linear-gradient(to right, #303133 0%, #191a1b 100%);
}

.modal.transparent .modal-body,
.modal .modal-body.transparent {
  background: transparent !important;
}

.modal .modal-footer {
  height: 80px;
  background: transparent !important;
}

.modal .modal-content {
  background: transparent !important;
  background-image: none !important;
  border: none;
}

.modal-backdrop {
  background-color: transparent !important;
}

.modal .modal-content h1,
.modal .modal-content h2,
.modal .modal-content h3,
.modal .modal-content h4,
.modal .modal-content h5,
.modal .modal-content h6 {
  margin: 0 !important;
}

.modal .modal-title {
  text-shadow: none;
  text-align: center !important;
  max-width: calc(100% - 200px);
}

/*@media screen and (max-height: 450px) {
    .modal a {
        font-size: 2rem
    }
}*/
.modal.fade-up {
  display: block !important;
  opacity: 0;
  top: 110vh;
  -webkit-transition: calc(0.3s*1) ease-in-out;
  -o-transition: calc(0.3s*1) ease-in-out;
  transition: calc(0.3s*1) ease-in-out;
}

.modal.fade-up.show {
  top: 0;
  opacity: 1;
  display: block !important;
  -webkit-transition: calc(0.3s*1) ease-in-out;
  -o-transition: calc(0.3s*1) ease-in-out;
  transition: calc(0.3s*1) ease-in-out;
}

.modal.fade-up:not(.show) {
  top: 110vh;
  opacity: 0;
  display: block !important;
  -webkit-transition: calc(0.3s*1) ease-in-out;
  -o-transition: calc(0.3s*1) ease-in-out;
  transition: calc(0.3s*1) ease-in-out;
}

.modal .close {
  display: none;
}

.modal .closebtn {
  position: absolute;
  top: 6px;
  right: calc(1rem*1);
  font-size: 3rem;
  z-index: 9001;
}

@media screen and (max-height: 450px) {
  .modal .closebtn {
    font-size: 3rem;
  }
}

.modal .backbtn {
  position: absolute;
  top: 6px;
  left: calc(1rem*1);
  font-size: 3rem;
  z-index: 9001;
}

@media screen and (max-height: 450px) {
  .modal .backbtn {
    font-size: 3rem;
  }
}

.modal:not(.fullscreen) .modal-body {
  min-height: 200px;
  max-height: 70vh;
}

.modal.fullscreen .modal-dialog {
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  margin: 0;
}

.modal.fullscreen .modal-content {
  width: 90vw;
  height: 90vh;
  background: transparent !important;
  background-image: none !important;
}

.modal.fullscreen:not(.body-only) .modal-body {
  height: calc(90vh - 160px);
}

.modal.fullscreen.body-only .modal-body {
  height: 90vh;
}

.modal.fullscreen .modal-title {
  max-width: 60vw;
}

.modal.fullscreen.body-only .modal-header {
  display: none;
}

.modal.fullscreen.body-only .modal-footer {
  display: none;
}
