/* *** colour.scss *** */
.bkgrd-fde7be {
  background-color: #fde7be;
}

/* *** core.scss *** */
/* *** colour.scss *** */
.bkgrd-fde7be {
  background-color: #fde7be;
}

/* *** responsive.scss *** */
/* The Modal (background) */
/* Modal Header */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 11; /* Sit on top */
  padding-top: 50px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.6); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 1079px;
  max-width: 1200px;
  height: calc(100% - 100px);
  background-color: #fefefe;
  border: 1px solid #888;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

/* Add Animation */
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
/* The Close Button */
.model-close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.model-close:hover, .model-close:focus {
  color: lightcoral;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px var(--gutter-size);
  background: linear-gradient(90deg, #C8102E 0%, #000 100%);
  color: white;
}
.modal-header h2 {
  margin: 0;
}

.modal-body {
  padding: 2px 0px;
  height: calc(100% - 48px);
  overflow-x: hidden;
  overflow-y: scroll;
}

/*
.modal-compare .modal-body{
  width: 1077px;
}
  */
.modal-footer {
  position: absolute;
  bottom: 0;
  padding: 5px 0;
  width: 100%;
  background: linear-gradient(90deg, #C8102E 0%, #000 100%);
  color: white;
}

body.modal-open {
  height: 100vh;
  overflow-y: hidden;
}

.modal-compare.modal {
  padding-top: 0;
}
.modal-compare .modal-content {
  margin: 8px auto;
  width: calc(100% - 16px);
  max-width: 1079px;
  height: calc(100% - 32px);
}
.modal-compare .modal-body {
  width: 100%;
  max-width: 1077px;
  padding: 0;
}

@media screen and (min-width: 992px) {
  .page-compare {
    /*.modal-content{ 
      width: 1079px;
      height: calc(100% - 20px);
    }*/
  }
  .page-compare .modal {
    padding-top: 30px;
  }
  .page-compare .modal-body {
    padding: 0;
  }
}/*# sourceMappingURL=modal.css.map */