﻿.formContainer { display:flex; gap:20px; flex-wrap:wrap;}
.formContainer .item {  background:#f0f0f0; padding:20px; border-radius:20px; width:calc(50% - 10px); display:flex; align-items:center; gap:20px;}
.formContainer .item label { font-weight:300; margin:0;}
.formContainer .item input[type=text] { background:#fff; padding:10px; border:none; width:100%; border-radius:20px;}
.formBtnContainer { display:table; margin:30px auto;}
input[type="radio"], input[type="checkbox"] { margin:0;}
.centerContentTitle { text-align:center; font-size:40px; font-weight:300; padding:0 0 20px 0; color:#000;}
.alert-info {background: none !important;border: none !important;box-shadow: none !important;text-shadow: none !important;}
#btnNeswletterSave {
	border-radius: 90px;
    background: linear-gradient(90deg, #E5D5B1 0%, #8A480C 100%);
    width: 198px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 1s ease-out;
}
#aboutAccordion {
    display: flex;
    flex-direction: column;
}
#btnNeswletterSave:hover {
    background: linear-gradient(90deg, #8A480C 0%, #E5D5B1 100%);
    background-position: 198px;
}
#home-pop-up {
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 100%;
  background: rgba(0, 0, 0, 0.4901960784);
}
#home-pop-up .container-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
}
#home-pop-up center {
  position: relative;
}
#home-pop-up center .close-popup {
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 1;
  color: #c86742;
  font-size: 30px;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
	  #home-pop-up .container-content {
    width: 90%;
  }
  #home-pop-up center .close-popup {
    right: 10px;
    top: 7px;
  }
}