* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }

  body {
    background-color: #ffffff;
  }

  .wrapper {
    width: 80%;
    max-width:400px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 10%;
    left: 50%;
    
  }
  .slide-in-blurred-top {
    -webkit-animation: slide-in-blurred-top 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
            animation: slide-in-blurred-top 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
  }

  .slide-in-blurred-bottom {
    -webkit-animation: slide-in-blurred-bottom 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) reverse both;
            animation: slide-in-blurred-bottom 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) reverse both;
  }

  .container {
    width: 100%;
    background-color: #ffffff;
    padding: 20px 20px;
    box-shadow: 0 20px 65px rgba(0, 0, 0, 0.5);
    position: absolute;
    border-radius: 8px;
    text-align: center;
    display:flex;
    flex-direction: column;
    align-items: center;
    
  }
  .container:after {
    content: "";
    position: absolute;
    width: 80%;
    height: 100%;
    background-color: #791616;
    z-index: -1;
    top: -10%;
    left: 10%;
    display:none;
  }

  .wall {
    content: "";
    position: absolute;
    width: 40%;
    height: 100%;
    background-color: #791616;
    z-index: -1;
    top: -0%;
    left: 30%;
  }

  .container p {
    color: #000000;
    font-family: 'EB Garamond', serif;
    line-height: 1;
    font-size: 1.5em;
  }
  .container h3 {
    color: #000000;
    margin: 0px 0px 10px 0;
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    font-size: 2em;
    text-transform: capitalize;
  }
  .container h4 {
    color: #000000;
    margin: 10px 0 30px 0;
    font-family: 'EB Garamond', serif;
    font-weight: 200;
    font-size: 1em;
    text-transform: italic;
  }
  .container button {
    background-color: #526969;
   
    border: none;
    font-family: 'EB Garamond', serif;
    padding: 15px 20px;
    margin: 15px 45px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
    transition: box-shadow 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
  }

  .container button:hover {
    transform: translate(0,-5%);
    box-shadow: 0 10px 10px 0 rgba(0,0,0,0), 0 10px 20px 0 rgba(156, 185, 185, 1);
    
  }
  





  
  .combo {
    display: block;
    margin-bottom: 1.5em;
    max-width: 400px;
    position: relative;
    padding: 20px 0px;
  
  }
  
  .combo::after {
    border-bottom: 2px solid rgba(0,0,0,.5);
    border-right: 2px solid rgba(0,0,0,.5);
    content: '';
    display: block;
    height: 12px;
    pointer-events: none;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translate(0, -65%) rotate(45deg);
    width: 12px;
  }
  
  .combo-input {
    background-color: #f5f5f5;
    border: 2px solid rgba(0,0,0,.5);
    border-radius: 4px;
    display: block;
    font-size: 1em;
    min-height: calc(1.4em + 26px);
    padding: 12px 16px 14px;
    text-align: left;
    width: 100%;
  }
  
  .open .combo-input {
    border-radius: 4px 4px 0 0;
  }
  
  .combo-input:focus {
    border-color: #791616;
    box-shadow: 0 0 4px 2px #791616;
    outline: 5px solid transparent;
  }
  
  .combo-label {
    display: block;
    font-size: 20px;
    font-weight: 100;
    margin-bottom: 0.25em;
  }
  
  .combo-menu {
    background-color: #f5f5f5;
    border: 1px solid rgba(0,0,0,.42);
    border-radius: 0 0 4px 4px;
    display: none;
    max-height: 100px;
    overflow-y:scroll;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 100;
  }
  
  .open .combo-menu {
    display: block;
  }
  
  .combo-option {
    padding: 10px 12px 12px;
  }
  
  .combo-option.option-current,
  .combo-option:hover {
    background-color: rgba(0,0,0,0.1);
  }
  
  .combo-option.option-selected {
    padding-right: 30px;
    position: relative;
  }
  
  .combo-option.option-selected::after {
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    content: '';
    height: 16px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
    width: 8px;
  }
  
  /* multiselect list of selected options */
  .selected-options {
    list-style-type: none;
    margin: 0;
    max-width: 400px;
    padding: 0;
  }
  
  .selected-options li {
    display: inline-block;
    margin-bottom: 5px;
  }
  
  .remove-option {
    background-color: #791616;
    border: 1px solid #791616;
    border-radius: 3px;
    color: #fff;
    font-size: 0.75em;
    font-weight: bold;
    margin-bottom: 6px;
    margin-right: 6px;
    padding: 0.25em 1.75em 0.25em 0.25em;
    position: relative;
  }
  
  .remove-option:focus {
    border-color: #baa1dd;
    box-shadow: 0 0 3px 1px #791616;
    outline: 3px solid transparent;
  }
  
  .remove-option::before,
  .remove-option::after {
    border-right: 2px solid #fff;
    content: "";
    height: 1em;
    right: 0.75em;
    position: absolute;
    top: 50%;
    width: 0;
  }
  
  .remove-option::before {
    transform: translate(0, -50%) rotate(45deg);
  }
  
  .remove-option::after {
    transform: translate(0, -50%) rotate(-45deg);
  }
  

  @-webkit-keyframes slide-in-blurred-top {
    0% {
      -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
              transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
      -webkit-transform-origin: 50% 0%;
              transform-origin: 50% 0%;
      -webkit-filter: blur(40px);
              filter: blur(40px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0) scaleY(1) scaleX(1);
              transform: translateY(0) scaleY(1) scaleX(1);
      -webkit-transform-origin: 50% 50%;
              transform-origin: 50% 50%;
      -webkit-filter: blur(0);
              filter: blur(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-blurred-top {
    0% {
      -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
              transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
      -webkit-transform-origin: 50% 0%;
              transform-origin: 50% 0%;
      -webkit-filter: blur(40px);
              filter: blur(40px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0) scaleY(1) scaleX(1);
              transform: translateY(0) scaleY(1) scaleX(1);
      -webkit-transform-origin: 50% 50%;
              transform-origin: 50% 50%;
      -webkit-filter: blur(0);
              filter: blur(0);
      opacity: 1;
    }
  }
  
  @-webkit-keyframes slide-in-blurred-bottom {
    0% {
      -webkit-transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
              transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
      -webkit-transform-origin: 50% 100%;
              transform-origin: 50% 100%;
      -webkit-filter: blur(40px);
              filter: blur(40px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0) scaleY(1) scaleX(1);
              transform: translateY(0) scaleY(1) scaleX(1);
      -webkit-transform-origin: 50% 50%;
              transform-origin: 50% 50%;
      -webkit-filter: blur(0);
              filter: blur(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-blurred-bottom {
    0% {
      -webkit-transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
              transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
      -webkit-transform-origin: 50% 100%;
              transform-origin: 50% 100%;
      -webkit-filter: blur(40px);
              filter: blur(40px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0) scaleY(1) scaleX(1);
              transform: translateY(0) scaleY(1) scaleX(1);
      -webkit-transform-origin: 50% 50%;
              transform-origin: 50% 50%;
      -webkit-filter: blur(0);
              filter: blur(0);
      opacity: 1;
    }
  }
  