
html {
  font-size: 16px;
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  font-family: GreycliffCF, Helvetica, Calibri, sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

h1, h2, h3, p {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}


.desktop-hidden, .desktop1024-hidden, .mobil-visible, .desktop-tablet-hidden {
  display: none !important;
}

.desktop-visible, .desktop1024-visible, .mobil-hidden, .desktop-tablet-visible {
  display: block !important;
}

.center {
  text-align: center;
}

.hdesc {
  display: none;
  visibility: hidden;
  opacity: 0;
}


.buying{
  width: 100%;
}
.buyingbg{
  width: 100%;
  height: 100%;
  background: #FFF9F3;
  padding: 50px 0;
}
.buying-top{
  display: grid;
  grid-template-columns: 1fr 1fr 183px;
  gap: 20px;
}

.buyingtitle{
  color: #2C2663;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0 0 20px 0;
}
.buyingdesc{
  width: 100%;
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin: 0;
  padding: 0 0 57px 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #515151;
}

.buying-content{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
  align-items: stretch;
}
.buying-content-item{
  background-color: #fff;
  border-radius: 8px;
  padding: 14px;
  display: grid;
  gap: 14px;
  grid-template-rows: 1fr 40px;
}

.buying-content-address{
  padding: 22px;
  border-radius: 8px;
  background-color: #F9F9F9;
  /* margin-bottom: 14px; */
}
.buying-content-title{
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #2C2663;
  text-align: left;
}
.buying-content-desc{
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #8987A1;
  text-align: left;
  padding-top: 15px;
}
.buyingbtn{
  width: 183px;
  height: 60px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 16px;
	line-height: 59px;
	border-radius: 8px;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	font-weight: 600;	
	padding: 0;
	cursor: pointer;
  background: #2C2662;
  border: 0;
  outline: none;
}

.buying-maps{
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  padding: 0;
  background: #E15D1D;
  height: 40px;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #ffffff;
  text-decoration: none;
  &:hover, &:focus{
    text-decoration: none;
  }
  img{
    margin-right: 10px;
  }
}

.custom-select {
  --radius: 8px;
  --padding: 5px;
  --option-height: 30px;
  --border-thickness: 1px;
  width: 100%;
  height: 61px;
  background: #ffffff;
  border-radius: var(--radius);
  padding: var(--padding);
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  border: solid 2px #EBEBEB;
  display: grid;
  align-items: center;
}
.custom-select:hover {
  border: 2px solid #E15D1D;
  background: #fff;
}
.custom-select__header {
  cursor: pointer;
  position: relative;
  padding-left: 20px;
  height: 100%;
  display: grid;
  align-items: center;
  border-radius: 35px;
}
.custom-select__header h2 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #8987A1;
}
.custom-select--has-selection .custom-select__header h2 {
  color: #000;
}
.custom-select__header::before {
  content: "";
  width: calc(var(--option-height) / 3);
  height: calc(var(--option-height) / 3);
  position: absolute;
  top: 45%;
  margin-right: 23px;
  right: 0;
  z-index: 8;
  transform: translateY(-50%) rotate(315deg);
  background: transparent;
  border-left: solid 2px #000;
  border-bottom: solid 2px #000;
}
.custom-select .select-mobile-sort {
  display: none;
}
.custom-select__dropdown {
  width: calc(100% + 4px);
  max-height: 0;
  /* --radius: 35px; */
  overflow-y: auto;
  background: #eee;
  transition: height 0.4s;
  position: absolute;
  box-sizing: border-box;
  top: calc(100% - var(--padding) + 14px);
  left: -2px;
  background: #fff;
  z-index: 99;
  border-radius: var(--radius);
  /* border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius); */
  opacity: 0;
  visibility: hidden;
  /* padding: 10px 0 15px 0; */
  padding: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #C3C1C6 transparent;
  border: 2px solid #EBEBEB;
}
.custom-select__dropdown--collapsed {
  max-height: 440px;
  opacity: 1;
  visibility: visible;
}
.custom-select__dropdown::-webkit-scrollbar {
  height: 10px;
  width: 1px;
  margin-left: 5px;
}
.custom-select__dropdown::-webkit-scrollbar-track {
  border-radius: 1px;
  background-color: transparent;
}
.custom-select__dropdown::-webkit-scrollbar-track:hover {
  background-color: transparent;
}
.custom-select__dropdown::-webkit-scrollbar-track:active {
  background-color: transparent;
}
.custom-select__dropdown::-webkit-scrollbar-thumb {
  border-radius: 1px;
  background-color: #C3C1C6;
  border: solid 1px #000;
}
.custom-select__dropdown::-webkit-scrollbar-thumb:hover {
  background-color: #C3C1C6;
}
.custom-select__dropdown::-webkit-scrollbar-thumb:active {
  background-color: #C3C1C6;
}
.custom-select__option {
  height: var(--option-height);
  margin: 1px 0;
  display: grid;
  align-content: center;
  box-sizing: border-box;
  padding-right: calc(var(--option-height) + var(--radius));
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 53px;
  margin: 0;
  padding: 0 25px;
  font-size: 1rem;
}
/* .custom-select__option::before {
  content: "";
  width: calc(var(--option-height) / 2);
  height: calc(var(--option-height) / 2);
  border: solid var(--border-thickness) #ccc;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  right: var(--padding);
  z-index: 9;
  transform: translateY(-50%);
  background: #fff;
  display: grid;
  align-content: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 5px;
}
.custom-select__option--selected::before {
  content: "✓";
  background: #eec922;
  border-color: #eec922;
} */

.custom-select__option:hover {
  background: #F9F9F9;
  border-radius: 0px;
}
.custom-select--mobile {
  display: none;
}
.custom-select--collapsed {
  /* border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; */
  background-color: #fff;
  
  /* border: 2px solid #EBEBEB; */
}
.custom-select--collapsed .custom-select__header h2 {
  color: #4D4D4D;
}


@media screen and (max-width: 1449px) {
  
  .custom-select__header {
    padding-left: 20px;
  }
  .custom-select__header::before {
    margin-right: 24px;
  }
  .custom-select__header h2 {
    font-size: 1rem;
  }
  .custom-select__option {
    height: 43px;
    font-size: 0.83rem;
  }
  .custom-select__dropdown--collapsed {
    max-height: 280px;
  }

  .buying-content-desc{
    padding-top: 10px;
  }
}

@media screen and (max-width: 1300px) {
  
  .custom-select__header {
    padding-left: 10px;
  }
  .custom-select__header::before {
    margin-right: 10px;
  }
}
@media screen and (max-width: 992px) {
  .desktop-tablet-hidden {
    display: block !important;
  }

  .desktop-tablet-visible {
    display: none !important;
  }

  .buyingbg{
    /* padding: 50px 0; */
  }
  .buyingtitle{
    font-size: 30px;
    line-height: 40px;
  }
  .buying-top{
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .buying-content{
    margin-top: 65px;
  }

  .buying-content-item{
    padding: 12px;
  }
  .buying-content-address{
    margin-bottom: 0;
  }
  .buying-content{
    grid-template-columns: 1fr;
  }

  .buying-content-title{
    font-size: 18px;
  }

  .buying-content-desc{
    font-size: 12px;
  }

  .buyingbtn{
    width: 100%;
    margin-top: 24px;
  }

  .custom-select__header::before {
    margin-right: 15px;
  }
  .custom-select__option {
    /* width: calc(100% - 14px);
    margin: 0 7px; */
  }

}
@media screen and (max-width: 767px) {
  .desktop-hidden, .mobil-visible {
    display: block !important;
  }

  .desktop-visible, .mobil-hidden {
    display: none !important;
  }


}
@media screen and (max-width: 400px) {

}

