@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif !important;
  color: var(--black-color);
}

:root {
  --white-color: #fff;
  --black-color: #000;
  --red-first-color: #e7522f;
  --red-second-color: #f4e6e5;
  --red-third-color: #fff7f5;
  --gray-first-color: #575756;
  --gray-second-color: #1b1d21;
  --gray-third-color: #f6f7fa;
  --gray-fourth-color: #9e9e9e;
  --gray-fifth-color: #333639;
  --blue-first-color: #0b3c59;
}

.transparent {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  top: 0;
  z-index: 5000;
}

ul {
  padding-inline-start: 0;
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
p {
  margin-bottom: 0;
}

.box-shadow-0 {
  box-shadow: none !important;
}

.m-t-20 {
  margin-top: 20px;
}

.btn-white {
  background-color: var(--white-color);
  color: var(--red-first-color) !important;
  font-weight: 700;
  font-size: 20px;
  padding-right: 40px;
  position: relative;
}

.btn-white:after {
  display: block;
  position: absolute;
  right: 15px;
  top: 6px;
  content: '>';
  font-weight: 700;
  font-size: 20px;
  color: var(--red-first-color) !important;
}

.btn-red {
  background-color: var(--red-first-color);
  color: var(--white-color) !important;
  font-weight: 700;
  font-size: 20px;
  padding-right: 40px;
  position: relative;
}

.btn-red:after {
  display: block;
  position: absolute;
  right: 15px;
  top: 6px;
  content: '>';
  font-weight: 700;
  font-size: 20px;
  color: var(--white-color) !important;
}

.main-form-input {
  font-size: 14px;
  background-color: var(--gray-third-color);
  color: var(--gray-fourth-color);
  height: 50px;
}

.main-form-style {
  font-size: 14px;
  color: var(--gray-fourth-color);
}

.loading {
  width: 39px !important;
  height: 30px;
  margin-left: 20px;
}

.tab {
  background-color: var(--gray-third-color);
  margin-top: 20px;
}

.tab:first-child {
  margin-top: 0;
}

.tab.active {
  background-color: var(--red-third-color);
}

.tab-title h4 {
  cursor: pointer;
  padding: 20px;
  font-size: 16px;
  color: var(--gray-fifth-color);
  font-weight: normal;
  position: relative;
  padding-left: 40px;
}

.tab-title h4:after {
  width: 10px;
  height: 8px;
  background-image: url('../img/icon/arrow-small.svg');
  display: block;
  content: '';
  position: absolute;
  left: 20px;
  top: 25px;
}

.tab.active .tab-title h4:after {
  background-image: url('../img/icon/arrow-small-red.svg');
}

.tab.active .tab-title h4 {
  font-weight: 700;
  cursor: default;
}

.tab.active .tab-content {
  display: block;
}

.tab-content {
  padding: 0 20px 20px 20px;
  color: var(--gray-fourth-color);
  font-size: 14px;
  display: none;
}

@media only screen and (max-width: 767px) {
  .tab:first-child {
    margin-top: 40px;
  }
}
