.panel-wrapper{
  display: none;
  flex-direction: row;
  position : fixed;
  justify-content: center;
  align-items: center;
  width : 100%;
  height: 100%;
  z-index: 11;
  overflow: visible;
  background: rgba(17, 17, 26, 0.5);
}

.panel-innerWrapper{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: auto;
  overflow-y: scroll;
  padding: 10px 10px 10px 10px;
  height: calc(100% - 0px);
}

.panel-innerWrapper2{
  display: inline-block;
  height: auto;
  overflow-y: scroll;
  height: calc(100% - 200px);
}

.panel{
  display: inline-block;
  width: 600px;
  height: 80%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all .3s;
  overflow: visible;
  padding: 10px 10px 10px 10px;
  box-sizing: border-box;
  background: white;
  border-radius: 10px;
  overflow-y: scroll;
  scrollbar-color: #4dc1de #C2D2E4;
  scrollbar-width: none;

  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

@media only screen and (max-width: 1300px) {
  .panel{
    width: calc(100% - 20px);
    padding: 10px 10px 10px 10px;
    margin: 0px 10px;
  }
}

.panel::-webkit-scrollbar {
  height: 0px;
  display: none;
}

.panel::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0.1);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.1);
}

.panel::-webkit-scrollbar-thumb {
  background-color: white;
  outline: 0.1px solid white;
}

.panel-close-button-wrapper{
  display: inline-flex;
  position: relative;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  border-radius: 10px;
}

.panel-close-button-wrapper img{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 35px;
  height: 35px;
  z-index: 20;
  cursor: pointer;
}

/* @media only screen and (max-width: 1200px) {
  .panel-close-button-wrapper img{
    font-size: 0.85rem;
    width: 100px;
    height: 100px;
  }
} */

.panel-cs-wrapper{
  display: inline-flex;
  width: auto;
  flex-direction: row;
  align-items: center;
  margin-left: 30px;
  cursor: pointer;
}

.panel-title{
  display: block;
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: center;
}

.panel-subtitle{
  display: block;
  font-size: 0.75rem;
  margin-bottom: 20px;
  text-align: center;
}

.panel-paragraph-title{
  display: inline-block;
  font-size: 0.85rem;
  font-weight: bold;
  text-align: left;
  margin: 10px 20px;
  text-align: left;
}

.panel-text{
  display: inline-block;
  font-size: 0.85rem;
  margin: 10px 20px;
  text-align: left;
}

.inquire-button{
  display: inline-grid;
  align-self: center;
  grid-template-rows: 50% 50%;
  width: calc(100% - 60px);
  margin: 0px 30px;
  align-items: center;
  background-color: #FFFFFF;
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: dimgrey;
  cursor: pointer;
  justify-content: center;
  padding: 10px 20px;
  position: relative;
  text-decoration: none;
  transition: all 100ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1300px) {
  .inquire-button {
    border: 2px solid rgba(0, 0, 0, 0.5);
    margin-top: 50px;
  }
}

.inquire-button:hover,
.inquire-button:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: rgba(0, 0, 0, 0.65);
  border: 5px solid rgba(0, 0, 0, 0.9);
}

.inquire-button:hover {
  transform: translateY(-1px);
}

.inquire-button:active {
  background-color: #F0F0F1;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
}

.inquire-button-text{
  display: inline-block;
  grid-row-start: 1;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  font-weight: bold;
}

.inquire-button-subtext{
  display: inline-block;
  grid-row-start: 2;
  width: 100%;
  font-size: 0.7rem;
  text-align: center;
  padding-top: 10px;
  color: dimgray;
}