/*Common*/
body {
  color: rgba(0, 0, 0, 0.9);
  background-color: rgba(188, 188, 188, 0.1);
  font-family: var(--main-font);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
label,
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
p {
  line-height: 1.3;
}
a {
  text-decoration: none;
  font-weight: normal;
  color: inherit;
}
input,
textarea {
  outline: none;
  border-bottom: 1px solid white;
  background-color: var(--main-color);
}

/*Scrollbar*/
.horizontal-track {
  overflow-y: auto;
}
.vertical-track {
  overflow-x: auto;
}
.horizontal-track::-webkit-scrollbar {
  width: 5px;
}
.vertical-track::-webkit-scrollbar {
  height: 5px;
}
.horizontal-track::-webkit-scrollbar-track,
.vertical-track::-webkit-scrollbar-track {
  background-color: rgba(188, 188, 188, 0.1);
}
.horizontal-track::-webkit-scrollbar-thumb,
.vertical-track::-webkit-scrollbar-track {
  background-color: rgba(188, 188, 188, 0.9);
  border-radius: 10px;
}

/*Block Layout*/
.main-section {
  position: relative;
  z-index: 9;
  background-color: white;
}
.new-layer {
  margin: 0 auto;
  padding: 75px 0;
  max-width: 1366px;
}
.flex-content {
  display: flex;
  display: -webkit-flex;
}
.block-center {
  align-items: center;
  align-self: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 auto;
  text-align: -webkit-center;
  text-align: center;
}
@media (min-width: 360px) and (max-width: 768px) {
  .flex-column {
    flex-direction: column;
  }
}

/*Block Size*/
.col-1 {
  width: 100%;
  box-sizing: border-box;
}
.col-2 {
  width: 50%;
  box-sizing: border-box;
}
.col-3 {
  width: 33.99%;
  box-sizing: border-box;
}
.col-4 {
  width: 25%;
  box-sizing: border-box;
}
.col-5 {
  width: 20%;
  box-sizing: border-box;
}
@media (min-width: 360px) and (max-width: 768px) {
  .col-2,
  .col-3,
  .col-4,
  .col-5 {
    width: 100%;
  }
  .full-width {
    width: 100% !important;
  }
  .full-width-text {
    width: 95% !important;
  }
}

/*Device Mode Change*/
.desktop-mode {
  display: block;
}
.mobile-mode {
  display: none;
}
@media (min-width: 360px) and (max-width: 768px) {
  .desktop-mode {
    display: none;
  }
  .mobile-mode {
    display: block;
  }
}

/*Selection Box*/
.selection-label {
  width: 100%;
  font-size: 12px;
  position: relative;
  cursor: pointer;
}
.selection-label:after {
  content: "\f0d7";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  font-weight: bold;
  font-size: 13px;
  font-family: "Font Awesome 5 Free";
  display: flex;
  align-items: center;
}
.selection-label:focus-within .selection-box {
  visibility: visible;
  opacity: 1;
  transition: 0.1s;
}
.selection-box {
  position: absolute;
  top: 99%;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
  max-height: 100px;
  visibility: collapse;
  opacity: 0;
  transition: 0.1s;
}
.selection-box li {
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer;
  color: var(--nav-reverse-icon);
  text-align: left;
  word-wrap: break-word;
  transition: 0.3s;
}
.selection-box li:hover {
  background-color: rgba(188, 188, 188, 0.2);
  transition: 0.3s;
}
