.mtn-select {
  display: none;
}
.mtn-select-field {
  position: relative;
  margin: 32px 0;
}
.mtn-select-field .mtn-select ~ .validation {
  position: absolute;
  bottom: -24px;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  color: var(--Crimson);
}
.mtn-select-field .mtn-select ~ .label {
  position: absolute;
  top: -32px;
  display: block;
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  margin: 0 0 8px 0;
}
.mtn-select-dark .mtn-select ~ .label {
  color: var(--White);
}
.mtn-select-light .mtn-select ~ .label {
  color: var(--Raven);
}
.mtn-select + .custom-mtn-select {
  position: relative;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-label {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 56px;
  background-color: var(--White);
  background-image: url(/wp-content/themes/mtn_personal/assets/images/icons/chevron-down.svg);
  background-repeat: no-repeat;
  background-size: 32px;
  background-position-x: 8px;
  background-position-y: center;
  border: 1px solid var(--Bob);
  border-radius: 12px;
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  transition: 0.5s;
  cursor: pointer;
  padding: 16px 16px 16px 56px;
  margin: 32px 0 0 0;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-label.active {
  border-color: var(--Raven);
  color: var(--Raven);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-label:focus:not(:active)::before {
  content: "";
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
  background-color: transparent;
  border: 2px solid var(--Sunshine_Dark);
  border-radius: 12px;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-label span {
  font-size: 14px;
  line-height: 22px;
  color: var(--Raven);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 0;
  background-color: var(--White);
  border-radius: 0 0 16px 16px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: 0.5s;
  z-index: 5000;
  padding: 0 16px 0 8px;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-search {
  list-style: none;
  margin: 0 0 8px 0;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-search .search {
  position: relative;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-search .search input {
  width: 100%;
  height: 48px;
  border: none;
  border-bottom: 1px solid var(--CardBoard);
  outline: none;
  background-color: var(--White);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  color: var(--Raven);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-search .search input::placeholder {
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  color: var(--Raven);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-search .search svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-search .search svg path,
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-search .search svg circle {
  stroke: var(--Raven);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list {
  list-style: none;
  max-height: 240px;
  overflow-y: auto;
  overflow-x: auto;
  padding: 0 0 0 8px;
  margin: 8px 0;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list::-webkit-scrollbar {
  width: 8px;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list::-webkit-scrollbar-track {
  background-color: var(--White);
  border: 1px solid var(--CardBoard);
  border-radius: 4px;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list::-webkit-scrollbar-thumb {
  background-color: var(--CardBoard);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list::-webkit-scrollbar-thumb:hover {
  background-color: var(--CardBoard);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li {
  display: flex;
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  color: var(--Raven);
  transition: 0.5s;
  padding: 0;
  margin: 0;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li::before {
  content: none;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li:hover {
  background-color: var(--Cloud);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li input {
  display: none;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li input:checked + label.box[for^=checkbox] {
  background-color: var(--Sunshine);
  background-image: url(/wp-content/themes/mtn_personal/assets/images/icons/check-dark.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
  border: 2px solid var(--Sunshine);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li input:checked + label.box[for^=radio] {
  border: 2px solid var(--Sunshine);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li input:checked + label.box[for^=radio]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--Sunshine);
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li label {
  cursor: pointer;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li label.box {
  margin: 8px 0 8px 8px;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li label.box[for^=checkbox] {
  width: 24px;
  height: 24px;
  border: 2px solid var(--Bob);
  border-radius: 4px;
  transition: 0.5s;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li label.box[for^=radio] {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid var(--Bob);
  border-radius: 50%;
  transition: 0.5s;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li label:not(.box) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 32px);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  padding: 8px 0;
}
.mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li label:not(.box) span {
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
}
@supports (-webkit-touch-callout: none) {
  .mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list {
    padding: 0 8px;
  }
}
.mtn-select + .custom-mtn-select:not(.disable) .custom-mtn-select-label:hover, .mtn-select + .custom-mtn-select:not(.disabled) .custom-mtn-select-label:hover {
  background-color: var(--Cloud);
}
.mtn-select + .custom-mtn-select:not(.disable) .custom-mtn-select-input:checked + .custom-mtn-select-main-list, .mtn-select + .custom-mtn-select:not(.disabled) .custom-mtn-select-input:checked + .custom-mtn-select-main-list {
  max-height: 2500px;
}
.mtn-select + .custom-mtn-select:not(.disable) .custom-mtn-select-input:checked + .custom-mtn-select-main-list + .custom-mtn-select-area, .mtn-select + .custom-mtn-select:not(.disabled) .custom-mtn-select-input:checked + .custom-mtn-select-main-list + .custom-mtn-select-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 2500;
}
.mtn-select + .custom-mtn-select.disable .custom-mtn-select-label, .mtn-select + .custom-mtn-select.disabled .custom-mtn-select-label {
  background-color: var(--CardBoard);
  color: var(--Bob);
}
.mtn-select + .custom-mtn-select.disable .custom-mtn-select-label > span, .mtn-select + .custom-mtn-select.disabled .custom-mtn-select-label > span {
  color: var(--Bob);
}
.mtn-select + .custom-mtn-select.disable + label + label, .mtn-select + .custom-mtn-select.disabled + label + label {
  color: var(--Iron);
}
.mtn-select.default-hide + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li:nth-child(1) {
  display: none;
}
.mtn-select.field {
  border: 1px solid var(--Raven);
}
.mtn-select-field .mtn-select.disable + .custom-mtn-select .custom-mtn-select-label, .mtn-select-field .mtn-select.disabled + .custom-mtn-select .custom-mtn-select-label, .mtn-select-field .mtn-select[disabled] + .custom-mtn-select .custom-mtn-select-label {
  background-color: var(--CardBoard);
  color: var(--Bob);
}
.mtn-select-field .mtn-select.disable + .custom-mtn-select .custom-mtn-select-label > span, .mtn-select-field .mtn-select.disabled + .custom-mtn-select .custom-mtn-select-label > span, .mtn-select-field .mtn-select[disabled] + .custom-mtn-select .custom-mtn-select-label > span {
  color: var(--Bob);
}
.mtn-select-field .mtn-select.disable + .custom-mtn-select .custom-mtn-select-label + label + label, .mtn-select-field .mtn-select.disabled + .custom-mtn-select .custom-mtn-select-label + label + label, .mtn-select-field .mtn-select[disabled] + .custom-mtn-select .custom-mtn-select-label + label + label {
  color: var(--Iron);
}
.mtn-select-field .mtn-select.disable ~ .label, .mtn-select-field .mtn-select.disabled ~ .label, .mtn-select-field .mtn-select[disabled] ~ .label {
  color: var(--Iron) !important;
}
.mtn-select-field .mtn-select:not(.disable):not(.disabled):not(:disabled):not([disabled]) + .custom-mtn-select .custom-mtn-select-input:checked + .custom-mtn-select-main-list {
  max-height: 2500px;
}
.mtn-select-field .mtn-select:not(.disable):not(.disabled):not(:disabled):not([disabled]) + .custom-mtn-select .custom-mtn-select-input:checked + .custom-mtn-select-main-list + .custom-mtn-select-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 2500;
}
.mtn-select.error + .custom-mtn-select .custom-mtn-select-label {
  border: 1.5px solid var(--Crimson) !important;
}
.mtn-select.success + .custom-mtn-select .custom-mtn-select-label {
  border: 1.5px solid var(--Reptile) !important;
}

html[lang=fa-IR] .mtn-select-field .mtn-select ~ .validation svg {
  margin: 0 0 -4px 4px;
}
html[lang=fa-IR] .mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-search .search svg {
  left: 16px;
}

html[lang=en-US] .mtn-select-field .mtn-select ~ .validation svg {
  margin: 0 4px -4px 0;
}
html[lang=en-US] .mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-search .search svg {
  right: 16px;
}
html[lang=en-US] .mtn-select + .custom-mtn-select .custom-mtn-select-label {
  padding: 16px 56px 16px 16px;
  background-position-x: right;
}
html[lang=en-US] .mtn-select + .custom-mtn-select .custom-mtn-select-input + .custom-mtn-select-main-list .custom-mtn-select-list > li label.box {
  margin: 8px 8px 8px 0;
}

html.dark .mtn-select + .custom-mtn-select .custom-mtn-select-label {
  background-image: url(/wp-content/themes/mtn_personal/assets/images/icons/chevron-down-light.svg);
}

@media (max-width: 768px) {
  .mtn-select + .custom-mtn-select .custom-mtn-select-label {
    height: 48px;
  }
  .mtn-select + .custom-mtn-select .custom-mtn-select-main-list {
    top: 48px;
  }
}
.page-template-default .wp-block-table {
  margin: 40px 0;
}

.mtn-table {
  width: 100%;
  border: 1px solid var(--Reptile_Light);
  border-radius: 20px;
  overflow: auto;
  margin: 0;
}
.mtn-table table {
  width: 100%;
  border-collapse: collapse;
}
.mtn-table table thead {
  background-color: var(--Sunshine);
  border: 1px solid var(--Reptile_Light);
}
.mtn-table table thead tr {
  background-color: var(--Butter) !important;
}
.mtn-table table thead tr th {
  text-align: start;
  padding: 32px 40px;
}
.mtn-table table tr:nth-child(odd) {
  background-color: var(--White);
}
.mtn-table table tr td {
  text-align: start;
  padding: 32px 40px;
}
.mtn-table table tr td * {
  text-align: start;
  margin: 0;
}
.mtn-table table tr td a {
  color: var(--Sky);
}

.grid-table {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
  border-radius: 0 0 20px 20px;
}
.grid-table .column {
  padding: 24px 16px;
  text-align: center;
}
.grid-table .column:first-child {
  text-align: right;
  padding-right: 46px;
}
.grid-table .header {
  background-color: var(--Butter);
  border-radius: 20px 20px 0 0;
  margin: 0;
}
.grid-table .header .column {
  position: relative;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  color: #202020;
  padding: 36px 16px 12px;
}
@media (max-width: 1200px) {
  .grid-table .header .column {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 768px) {
  .grid-table .header .column {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 567px) {
  .grid-table .header .column {
    font-size: 12px;
    line-height: 20px;
  }
}
.grid-table .header .column .red-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-54%);
}
.grid-table .body .row {
  margin: 0;
}
.grid-table .body .row .column {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  color: var(--Charcoal);
}
@media (max-width: 1200px) {
  .grid-table .body .row .column {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 768px) {
  .grid-table .body .row .column {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 567px) {
  .grid-table .body .row .column {
    font-size: 12px;
    line-height: 20px;
  }
}
.grid-table .body .row:nth-child(even) {
  background-color: var(--White);
}
.grid-table .body .row:nth-child(odd) {
  background-color: #F8F8F8;
}
.grid-table .body .row:last-child {
  border-radius: 0 0 20px 20px;
}

.wp-block-table {
  width: 100%;
  border: 1px solid var(--Reptile_Light);
  border-radius: 20px;
  overflow: auto;
  margin: 0;
}
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
.wp-block-table table tr:nth-child(odd) {
  background-color: var(--Cloud);
}
.wp-block-table table tr:nth-child(odd) td, .wp-block-table table tr:nth-child(odd) th {
  color: #202020 !important;
}
.wp-block-table table tr:nth-child(odd) td span, .wp-block-table table tr:nth-child(odd) td strong, .wp-block-table table tr:nth-child(odd) th span, .wp-block-table table tr:nth-child(odd) th strong {
  color: #202020 !important;
}
.wp-block-table table tr:nth-child(odd) td span a, .wp-block-table table tr:nth-child(odd) td strong a, .wp-block-table table tr:nth-child(odd) th span a, .wp-block-table table tr:nth-child(odd) th strong a {
  color: var(--Sky);
}
.wp-block-table table tr:nth-child(odd) td a, .wp-block-table table tr:nth-child(odd) th a {
  color: var(--Sky);
}
.wp-block-table table tr:nth-child(1) {
  border: 1px solid var(--Reptile_Light);
  background-color: var(--Butter);
}
.wp-block-table table tr:nth-child(1) td {
  text-align: center;
  font-weight: 700 !important;
  padding: 32px 40px;
}
.wp-block-table table tr td {
  text-align: center;
  padding: 32px 40px;
}
.wp-block-table table tr td * {
  text-align: start;
  margin: 0;
}
.wp-block-table table tr td a {
  color: var(--Sky);
}

@media (max-width: 768px) {
  .page-template-default .mtn-table {
    margin: 20px 0;
  }
  .mtn-table table {
    min-width: max-content;
  }
  .mtn-table table thead tr th {
    padding: 24px 16px;
  }
  .mtn-table table tr td {
    padding: 24px 16px;
  }
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 0 0;
}
.pagination span, .pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 240px;
  line-height: 0;
  color: var(--Raven);
  transition: 0.5s;
  margin: 0 4px;
}
.pagination span.current, .pagination a.current {
  background-color: var(--Raven);
  color: var(--White);
}
.pagination span:not(.no-hover):hover, .pagination a:not(.no-hover):hover {
  background-color: var(--CardBoard);
  color: var(--Raven);
}
.pagination span:focus, .pagination a:focus {
  border: 1px solid var(--Sunshine_Dark);
}

html[lang=en-US] .pagination span svg, html[lang=en-US] .pagination a svg {
  transform: rotate(180deg);
}

.modal input[type=checkbox], .modal input[type=radio] {
  display: none;
}
.modal input ~ .back {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: var(--Raven);
  z-index: 50000000;
}
.modal input ~ .modal-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: auto;
  box-shadow: 0px 8px 48px 0px rgba(0, 0, 0, 0.1);
  background-color: var(--White);
  border-radius: 24px;
  opacity: 0;
  visibility: hidden;
  z-index: 5500000000000000000000;
  transition: 0.5s;
  padding: 24px;
  margin: 80px 0 0 0;
}
.modal input ~ .modal-box .close {
  position: absolute;
  top: 24px;
  cursor: pointer;
}
.modal input ~ .modal-box .close svg path {
  stroke: var(--Raven);
}
.modal input ~ .modal-box > .main-content {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 320px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 8px;
  margin: 40px 0 0 0;
}
.modal input ~ .modal-box > .main-content::-webkit-scrollbar {
  width: 8px;
}
.modal input ~ .modal-box > .main-content::-webkit-scrollbar-track {
  background-color: var(--White);
  border: 1px solid var(--CardBoard);
  border-radius: 4px;
}
.modal input ~ .modal-box > .main-content::-webkit-scrollbar-thumb {
  background-color: var(--CardBoard);
}
.modal input ~ .modal-box > .main-content::-webkit-scrollbar-thumb:hover {
  background-color: var(--CardBoard);
}
.modal input ~ .modal-box > .main-content p,
.modal input ~ .modal-box > .main-content span:not(.btn-text),
.modal input ~ .modal-box > .main-content li {
  font-size: 16px;
  line-height: 26px;
}
.modal input ~ .modal-box > .main-content video {
  max-height: inherit;
}
.modal input ~ .modal-box .footer {
  border-top: 1px solid var(--Bob);
  padding: 24px 0 0 0;
}
.modal input:checked ~ .back {
  display: block;
}
.modal input:checked ~ .modal-box {
  opacity: 1;
  visibility: visible;
  margin: 0;
}
.modal.notification input ~ .modal-box {
  width: 640px;
}
.modal.notification input ~ .modal-box .icon {
  display: block;
  margin: 40px auto 0 auto;
}
.modal.notification input ~ .modal-box .main-content {
  margin: 32px 0 0 0;
}
.modal.notification input ~ .modal-box .main-content h1,
.modal.notification input ~ .modal-box .main-content h2,
.modal.notification input ~ .modal-box .main-content h3,
.modal.notification input ~ .modal-box .main-content h4,
.modal.notification input ~ .modal-box .main-content h5,
.modal.notification input ~ .modal-box .main-content h6,
.modal.notification input ~ .modal-box .main-content p,
.modal.notification input ~ .modal-box .main-content span,
.modal.notification input ~ .modal-box .main-content li {
  text-align: center;
}
.modal.notification input ~ .modal-box .mtn-buttons {
  display: flex;
  margin: 32px 0 0 0;
}
.modal.notification input ~ .modal-box .mtn-buttons .mtn-btn {
  width: 100%;
}

html[lang=fa-IR] .modal input ~ .modal-box .close {
  left: 16px;
}

html[lang=en-US] .modal input ~ .modal-box .close {
  right: 16px;
}

@media (max-width: 768px) {
  .modal input ~ .modal-box {
    width: calc(100% - 32px);
    padding: 24px 16px;
  }
  .modal input ~ .modal-box .main-content {
    max-height: calc(100vh - 400px);
  }
  .modal input ~ .modal-box .main-content p,
  .modal input ~ .modal-box .main-content span:not(.btn-text),
  .modal input ~ .modal-box .main-content li {
    font-size: 14px;
    line-height: 22px;
  }
  .modal.notification input ~ .modal-box {
    width: calc(100% - 32px);
  }
  .modal.notification input ~ .modal-box .icon {
    margin: 24px auto 0 auto;
  }
  .modal.notification input ~ .modal-box .main-content h1,
  .modal.notification input ~ .modal-box .main-content h2,
  .modal.notification input ~ .modal-box .main-content h3,
  .modal.notification input ~ .modal-box .main-content h4,
  .modal.notification input ~ .modal-box .main-content h5,
  .modal.notification input ~ .modal-box .main-content h6 {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
  }
  .modal.notification input ~ .modal-box .mtn-buttons {
    display: block;
    margin: 32px 0 0 0;
  }
  .modal.notification input ~ .modal-box .mtn-buttons .mtn-btn {
    width: 100%;
    margin: 16px 0 0 0;
  }
  .modal.notification input ~ .modal-box .mtn-buttons .mtn-btn:nth-child(1) {
    margin: 0;
  }
}
.yar-landing .top-section {
  padding: 87px 0 50px;
}
.yar-landing .top-section h3 {
  line-height: 66px;
  margin-bottom: 10px;
  color: #000000;
  max-width: 695px;
  font-weight: 900;
}
.yar-landing .top-section p {
  line-height: 45px;
  margin: 0;
  color: #000000;
  max-width: 695px;
}
.yar-landing .top-section p a {
  color: #00b8fb;
  text-decoration: underline;
}
.yar-landing .top-section picture,
.yar-landing .top-section img {
  max-height: 292px;
}
.yar-landing .top-section .col-image {
  margin: auto;
}
.yar-landing .cards-section {
  padding: 50px 0;
}
.yar-landing .cards-section h3 {
  line-height: 66px;
  margin-bottom: 30px;
  color: var(--Black);
  font-weight: 900;
}
.yar-landing .cards-section > .container > .row {
  display: flex;
  justify-content: space-between;
  row-gap: 30px;
  column-gap: 5px;
}
.yar-landing .cards-section > .container > .row .card {
  padding: 45px 30px;
  border: 1px solid #FFCC00;
  border-radius: 10px;
  width: 100%;
  max-width: 280px;
  min-height: 244px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.yar-landing .cards-section > .container > .row .card .icon {
  max-width: 66px;
  max-height: 66px;
  margin-bottom: 11px;
}
.yar-landing .cards-section > .container > .row .card .title {
  max-width: 216px;
  text-align: center;
}
.yar-landing .cards-section > .container > .row .card .title * {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
}
.yar-landing .services-section {
  padding: 50px 0;
}
.yar-landing .services-section h3 {
  line-height: 66px;
  margin-bottom: 30px;
  color: var(--Black);
  font-weight: 900;
  text-align: center;
}
.yar-landing .services-section ul {
  list-style: none;
  margin: 0;
  display: flex;
  row-gap: 43px;
  column-gap: 96px;
  flex-wrap: wrap;
  justify-content: center;
}
.yar-landing .services-section ul li {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  color: #000000;
}
.yar-landing .services-section ul li::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #FFCC00;
  border-radius: 50%;
  display: inline-flex;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.yar-landing .table-section {
  padding: 50px 0;
}
.yar-landing .table-section .main-content h3 {
  line-height: 66px;
  margin-bottom: 4px;
  color: var(--Black);
  font-weight: 900;
}
.yar-landing .table-section .main-content p {
  font-size: 18px;
  line-height: 35px;
  color: rgba(0, 0, 0, 0.5490196078);
  margin: 0;
}
.yar-landing .table-section .table-select {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
}
.yar-landing .table-section .table-select > div {
  width: calc(33.33% - 16px);
}
.yar-landing .table-section .table-select > div .custom-mtn-select-label {
  margin: 0;
}
.yar-landing .table-section .table-select > div input {
  font-size: 14px;
}
.yar-landing .table-section .mtn-select-field.mobile-version {
  display: none;
}
.yar-landing .table-section .table-section .main-content p {
  color: var(--Raven);
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}
.yar-landing .table-section table thead tr th {
  padding: 32px 8px;
}
.yar-landing .table-section table tbody tr:nth-child(even) {
  background: var(--Academy);
}
.yar-landing .table-section table tbody tr td {
  padding: 16px 8px;
}
.yar-landing .table-section table tbody tr td:nth-child(5) span:hover + ul {
  opacity: 1;
  visibility: visible;
}
.yar-landing .table-section table tbody tr td:nth-child(5) ul {
  position: absolute;
  width: 280px;
  background: var(--Raven);
  border-radius: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 24;
  padding: 16px;
  margin: 16px 0 0 0;
}
.yar-landing .table-section table tbody tr td:nth-child(5) ul::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 24px;
  width: 16px;
  height: 16px;
  background: var(--Raven);
  border-radius: 2px;
  transform: rotate(45deg);
}
.yar-landing .table-section table tbody tr td:nth-child(5) ul li {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  font-size: 12px;
  font-weight: normal;
  line-height: 20px;
  color: var(--White);
  padding: 8px 0;
}
.yar-landing .table-section table tbody tr td:nth-child(5) ul li:nth-child(1) {
  font-size: 14px;
  font-weight: bold;
  line-height: 22px;
}
.yar-landing .table-section table tbody tr td:nth-child(5) ul li * {
  font-size: 12px;
  font-weight: normal;
  line-height: 20px;
  color: var(--White);
}
.yar-landing .terms-section {
  padding: 50px 0;
}
.yar-landing .terms-section .terms-box {
  max-width: 1172px;
  border: 1px solid #FFCC00;
  border-radius: 20px;
  background-color: rgba(213, 213, 213, 0.0509803922);
  backdrop-filter: blur(40px);
  padding: 20px 16px 28px;
  margin: auto;
}
.yar-landing .terms-section .terms-box h4 {
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 30px;
  color: #000000;
}
.yar-landing .terms-section .terms-box .tabs {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 55px;
}
.yar-landing .terms-section .terms-box .tabs .tab-acc {
  padding: 6px 24px;
  border-radius: 12px;
  border: 1px solid #B0B0B0;
  background-color: #FFFFFF;
}
.yar-landing .terms-section .terms-box .tabs .tab-acc span {
  font-size: 14px;
  line-height: 22px;
  color: #202020;
}
.yar-landing .terms-section .terms-box .tabs .tab-acc.active {
  border: 1px solid #FFCB05;
  background-color: #FFCB05;
}
.yar-landing .terms-section .terms-box .tabs-body ul {
  list-style: none;
  margin: 0;
}
.yar-landing .terms-section .terms-box .tabs-body ul li {
  position: relative;
  font-weight: 300;
  font-size: 18px;
  line-height: 29px;
  color: #000000;
  margin-bottom: 30px;
}
.yar-landing .terms-section .terms-box .tabs-body ul li::before {
  content: "";
  width: 30px;
  height: 30px;
  display: inline-flex;
  position: absolute;
  top: 0;
  bottom: 0;
  background: url(../../../assets/images/icons/tick-yellow.svg) no-repeat center;
  background-size: cover;
}
.yar-landing .terms-section .download-button {
  text-align: center;
  margin-top: 30px;
}
.yar-landing .terms-section .download-button .mtn-btn {
  border-radius: 10px;
  width: 100%;
  max-width: 307px;
  height: 54px;
}
.yar-landing .terms-section .download-button .mtn-btn .btn-text {
  font-weight: 700;
  color: #000000;
}
.yar-landing .terms-section .download-button .mtn-btn.yellow:focus:not(:active)::before {
  border-radius: 10px;
}
.yar-landing .faq-section {
  padding: 50px 0 85px;
}
.yar-landing .faq-section .main-content h2,
.yar-landing .faq-section .main-content h3 {
  font-weight: 800;
  color: #202020;
}
.yar-landing .faq-section .accordion-wrapper input ~ .head .title {
  font-size: 20px;
  line-height: 32px;
  color: #202020;
  margin: 0;
}
.yar-landing .modal .back {
  opacity: 0.8;
  background: #404040;
  z-index: 10000000000;
}
.yar-landing .modal .modal-box {
  width: 72vw;
  z-index: 10000000000;
}
.yar-landing .modal .modal-box .modal-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 28px;
  color: var(--Raven);
}
.yar-landing .modal .modal-box .main-content {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  max-height: calc(100vh - 160px);
  border-top: 1px solid var(--CardBoard);
  padding: 24px 0 0 0;
  margin: 24px 0 0 0;
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) .mtn-input {
  margin: 0 8px 0 0;
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) .mtn-input input {
  margin: 0 0 16px 0;
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul {
  width: 400px;
  height: calc(100vh - 272px);
  overflow-x: hidden;
  overflow-y: auto;
  direction: ltr;
  padding: 0 16px 0 0;
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul::-webkit-scrollbar {
  width: 8px;
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul::-webkit-scrollbar-track {
  background-color: var(--White);
  border: 1px solid var(--CardBoard);
  border-radius: 4px;
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul::-webkit-scrollbar-thumb {
  background-color: var(--CardBoard);
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul::-webkit-scrollbar-thumb:hover {
  background-color: var(--CardBoard);
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul li {
  direction: rtl;
  padding: 0;
  margin: 0;
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul li::before {
  display: none;
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul li .box {
  display: block;
  width: 100%;
  background: var(--White);
  border: 1px solid var(--CardBoard);
  border-radius: 12px;
  padding: 16px;
  margin: 0 0 8px 0;
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul li .box .head {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul li .box .head svg {
  cursor: pointer;
  margin: 0 0 -8px 0;
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul li .box .head span {
  font-size: 16px;
  font-weight: bold;
  line-height: 26px;
  color: var(--Raven);
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul li .box .detail li {
  margin: 8px 0 0 0;
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul li .box .detail li svg {
  margin: 0 0 -4px 0;
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul li .box .detail li span {
  font-size: 14px;
  font-weight: normal;
  line-height: 22px;
  color: var(--Raven);
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul li .box .detail li span span {
  color: var(--Metal);
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul li.epmty-result {
  width: 100%;
  height: 100%;
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul li.epmty-result .box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul li.epmty-result .box span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  line-height: 22px;
  color: var(--Bob);
  margin: 16px 0 0 0;
}
.yar-landing .modal .modal-box .main-content > div:nth-child(2) {
  width: calc(100% - 424px);
  height: calc(100vh - 200px);
  border-radius: 24px;
}
.yar-landing .tariff-section {
  padding: 50px 0;
}
.yar-landing .tariff-section h3 {
  line-height: 66px;
  margin-bottom: 30px;
  color: var(--Black);
  font-weight: 900;
  text-align: center;
}
.yar-landing .tariff-section .mtn-table {
  width: fit-content;
  margin: auto;
}
.yar-landing .tariff-section .mtn-table table {
  width: auto;
}
.yar-landing .tariff-section .mtn-table table tr td,
.yar-landing .tariff-section .mtn-table table thead tr th {
  text-align: center;
  border: 1px solid var(--Bob);
}
.yar-landing .tariff-section .mtn-table table tbody tr:nth-child(even) {
  background: var(--LightGray);
}

html[lang=fa-IR] .yar-landing .services-section ul li {
  padding-right: 21px;
}
html[lang=fa-IR] .yar-landing .services-section ul li::before {
  right: 0;
}
html[lang=fa-IR] .yar-landing .table-section table tbody tr td:nth-child(5) ul::before {
  left: 16px;
  right: auto;
}
html[lang=fa-IR] .yar-landing .terms-section .terms-box .tabs-body ul li {
  padding-right: 52px;
}
html[lang=fa-IR] .yar-landing .terms-section .terms-box .tabs-body ul li::before {
  right: 0;
}
@media (max-width: 768px) {
  html[lang=fa-IR] .yar-landing .terms-section .terms-box .tabs-body ul li {
    padding-right: 38px;
  }
}

html[lang=en-US] .yar-landing .services-section ul li {
  padding-left: 21px;
}
html[lang=en-US] .yar-landing .services-section ul li::before {
  left: 0;
}
html[lang=en-US] .yar-landing .table-section table tbody tr td:nth-child(5) ul::before {
  left: auto;
  right: 16px;
}
html[lang=en-US] .yar-landing .terms-section .terms-box .tabs-body ul li {
  padding-left: 52px;
}
html[lang=en-US] .yar-landing .terms-section .terms-box .tabs-body ul li::before {
  left: 0;
}
@media (max-width: 768px) {
  html[lang=en-US] .yar-landing .terms-section .terms-box .tabs-body ul li {
    padding-left: 38px;
  }
}

@media (max-width: 768px) {
  .yar-landing .top-section {
    padding: 29px 0 20px;
  }
  .yar-landing .top-section h3 {
    font-size: 16px;
    line-height: 25px;
    font-weight: 950;
    text-align: center;
    margin-bottom: 16px;
  }
  .yar-landing .top-section p {
    line-height: 30px;
    text-align: justify;
    color: #202020;
  }
  .yar-landing .top-section .col-image {
    order: 1;
    margin-bottom: 32px;
  }
  .yar-landing .top-section .col-content {
    order: 2;
  }
  .yar-landing .cards-section {
    padding: 20px 0;
  }
  .yar-landing .cards-section > .container > .row {
    justify-content: center;
  }
  .yar-landing .cards-section > .container > .row .card {
    min-height: 212px;
    padding: 34px 30px;
  }
  .yar-landing .cards-section > .container > .row .card .title * {
    font-size: 14px;
    font-weight: 600;
  }
  .yar-landing .cards-section h3 {
    font-size: 14px;
    line-height: 25px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
  }
  .yar-landing .services-section {
    padding: 20px 0 22px;
  }
  .yar-landing .services-section h3 {
    font-size: 14px;
    line-height: 25px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 28px;
  }
  .yar-landing .services-section ul {
    justify-content: flex-start;
    row-gap: 15px;
    column-gap: 59px;
  }
  .yar-landing .services-section ul li {
    font-size: 14px;
    line-height: 23px;
  }
  .yar-landing .services-section ul li::before {
    width: 10px;
    height: 10px;
  }
  .yar-landing .table-section {
    padding: 22px 0 11px;
  }
  .yar-landing .table-section .main-content h3 {
    font-size: 16px;
    line-height: 25px;
    font-weight: 950;
    text-align: center;
    margin-bottom: 16px;
  }
  .yar-landing .table-section .main-content p {
    font-size: 14px;
    line-height: 30px;
    color: #202020;
  }
  .yar-landing .table-section .table-select {
    justify-content: space-between;
  }
  .yar-landing .table-section .table-select > div {
    width: calc(50% - 8px);
    margin: 24px 0 0 0;
  }
  .yar-landing .table-section .table-select > div.desktop-version {
    display: none;
  }
  .yar-landing .table-section .table-select > div input {
    font-size: 10px;
  }
  .yar-landing .table-section .mtn-select-field.mobile-version {
    display: block;
  }
  .yar-landing .table-section .table-section .main-content p {
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
  }
  .yar-landing .table-section table tbody tr td:nth-child(4) ul {
    margin: 16px 0 0 80px;
  }
  .yar-landing .table-section table tbody tr td:nth-child(4) ul::before {
    right: 104px;
  }
  .yar-landing .terms-section {
    padding: 11px 0 39px;
  }
  .yar-landing .terms-section .terms-box {
    padding: 30px 9px 7px;
  }
  .yar-landing .terms-section .terms-box h4 {
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 20px;
    text-align: center;
  }
  .yar-landing .terms-section .terms-box .tabs {
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
  }
  .yar-landing .terms-section .terms-box .tabs .tab-acc {
    padding: 5px 32px;
  }
  .yar-landing .terms-section .terms-box .tabs .tab-acc span {
    font-size: 16px;
    line-height: 26px;
  }
  .yar-landing .terms-section .terms-box .tabs-body ul li {
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 10px;
  }
  .yar-landing .terms-section .terms-box .tabs-body ul li::before {
    width: 24px;
    height: 24px;
  }
  .yar-landing .terms-section .download-button .mtn-btn {
    max-width: 230px;
    height: 40px;
  }
  .yar-landing .terms-section .download-button .mtn-btn .btn-text {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
  }
  .yar-landing .faq-section {
    padding: 39px 0 70px;
  }
  .yar-landing .faq-section .main-content h2 {
    margin: 0;
  }
  .yar-landing .faq-section .accordion-wrapper {
    padding-bottom: 12px;
  }
  .yar-landing .faq-section .accordion-wrapper input ~ .head {
    padding: 2px 0 12px;
  }
  .yar-landing .faq-section .accordion-wrapper input ~ .head .title {
    font-size: 16px;
    line-height: 30px;
  }
  .yar-landing .faq-section .accordion-wrapper input ~ .body p {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 12px;
  }
  .yar-landing .modal .modal-box {
    width: 96vw;
  }
  .yar-landing .modal .modal-box .modal-title {
    font-size: 14px;
    font-weight: bold;
    line-height: 22px;
  }
  .yar-landing .modal .modal-box .main-content {
    position: relative;
    display: block;
    height: 80vh;
    max-height: 80vh;
  }
  .yar-landing .modal .modal-box .main-content > div:nth-child(1) .mtn-input {
    margin: 0 8px;
  }
  .yar-landing .modal .modal-box .main-content > div:nth-child(1) .mtn-input input {
    margin: 0 0 16px 0;
  }
  .yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(80vh - 96px);
    background: var(--White);
    z-index: 500000;
    padding: 0 8px 0 0;
  }
  .yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul.show {
    display: block;
  }
  .yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul li .box .head span {
    font-size: 14px;
    font-weight: bold;
    line-height: 22px;
  }
  .yar-landing .modal .modal-box .main-content > div:nth-child(1) > ul li .box .detail li span {
    font-size: 12px;
    font-weight: normal;
    line-height: 20px;
  }
  .yar-landing .modal .modal-box .main-content > div:nth-child(2) {
    width: 100%;
    height: calc(80vh - 96px);
  }
  .yar-landing .tariff-section {
    padding: 20px 0;
  }
  .yar-landing .tariff-section h3 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 16px;
  }
  .yar-landing .tariff-section .mtn-table table tr td {
    max-width: 55vw;
  }
  .yar-landing .table-section table tbody tr td:nth-child(5) ul {
    right: 0;
    left: 0;
    margin: auto;
    margin-top: 16px;
  }
  .yar-landing .table-section table tbody tr td:nth-child(5) ul::before {
    opacity: 0;
  }
}
html.dark .yar-landing .table-section table tbody tr:nth-child(even) {
  background: #404040;
}
html.dark .yar-landing .table-section .mtn-btn.text-link .btn-icon svg path {
  fill: #FFFFFF !important;
}
html.dark .yar-landing .table-section table:not(.custom) tbody tr td svg path,
html.dark .yar-landing .table-section table:not(.custom) tbody tr td svg circle {
  stroke: #D9D9D9;
}