
/* Gilroy Thin */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

/* Gilroy Ultra Light */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-UltraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-UltraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

/* Gilroy Light */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

/* Gilroy Regular */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-Regular.woff2') format('woff2'),
         url('../fonts/gilroy/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-RegularItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

/* Gilroy Medium */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-Medium.woff2') format('woff2'),
         url('../fonts/gilroy/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

/* Gilroy Semi Bold */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-SemiBold.woff2') format('woff2'),
         url('../fonts/gilroy/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

/* Gilroy Bold */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-Bold.woff2') format('woff2'),
         url('../fonts/gilroy/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

/* Gilroy Extra Bold */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

/* Gilroy Heavy */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-HeavyItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

/* Gilroy Black */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-Black.ttf') format('truetype');
    font-weight: 950;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-BlackItalic.ttf') format('truetype');
    font-weight: 950;
    font-style: italic;
}

:root {
    --ya-primary-color: #FE665E;
    --ya-secondary-color: #181818;
    --ya-body-text-color: #404040;
    --ya-white-color: #FFFFFF;
    --ya-black-color: #181818;
    /* --ya-light-yellow-color: #FEE7CC; */

    --ya-body-bg-color: #F3F4F6;
    --ya-header-bg-color: #FFFFFF;
    --ya-footer-bg-color: #FFFFFF;

    --ya-loading-light-color : #f8d7da;
    --ya-loading-dark-color : #FE665E;
    /* --ya-pastel-green-color : #d1e7dd; */

    --ya-border-radius: 20px;
    --ya-body-font-size: 14px;
    --ya-title-font-size: 16px;    

    --ya-bg-success-subtle:#d1e7dd;
    --ya-danger-bg-subtle:#f8d7da;
    --ya-warning-bg-subtle: #fff3cd;
    --ya-info-bg-subtle: #DAF9FE;

    --ya-bg-secondary: #6c757d;
    --ya-bg-success: #198754;
    --ya-bg-info: #0dcaf0;
    --ya-bg-warning: #ffc107;
    --ya-bg-danger: #dc3545;
    --ya-primary-font-family: 'Gilroy', sans-serif;
    --ya-secondary-font-family: 'Gilroy', sans-serif;
    --ya-discount-header-bg-black: #000000;
    --ya-offer-gradient: linear-gradient(
		90deg,
		#BD519C 0%,
		#FE665E 50%,
		#FBB258 100%
	);
}
body.ya-dashboard-template {
    background-color: var(--ya-body-bg-color); 
    color: var(--ya-body-text-color);
    font-family: var(--ya-primary-font-family);
}
h1 {
    font-size: 3.5rem; /* ~56px */
    font-family: var(--ya-secondary-font-family);
}
  
  h2 {
    font-size: 2.5rem; /* ~40px */
    font-family: var(--ya-secondary-font-family);
  }
  
  h3 {
    font-size: 2rem;   /* ~32px */
    font-family: var(--ya-secondary-font-family);
  }
  
  h4 {
    font-size: 1.5rem; /* ~24px */
    font-family: var(--ya-secondary-font-family);
  }
  
  h5 {
    font-size: 1.25rem; /* ~20px */
    font-family: var(--ya-secondary-font-family);
  }
  
  h6 {
    font-size: 1rem; /* ~16px */
    font-family: var(--ya-secondary-font-family);
  }
  .ya-header {
    min-height: 90px;
    background-color: var(--ya-header-bg-color);
    color: var(--ya-black-color);
    box-shadow: 0px 4px 6px -2px #0000000D;
    box-shadow: 0px 10px 15px -3px #0000001A;
  }
  .ya-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
  }
  .ya-header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
  }
  .ya-header-logo img,.ya-app-brand-logo img {
    width: 100%;
    height: auto;
    max-width: 200px;
  }
  .ya-py-30{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ya-px-30{
    padding-left: 30px;
    padding-right: 30px;
  }
  .ya-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 6px;    
}
.ya-badge-danger {
    background-color: var(--ya-danger-bg-subtle);
    color: var(--ya-black-color);
}
.ya-badge-success {
    background-color: var(--ya-bg-success-subtle);
    color: var(--ya-white-color);
}
.ya-badge-info {
    background-color: var(--ya-danger-bg-subtle);
    color: var(--ya-black-color);
}
.ya-badge-warning {
    background-color: var(--ya-warning-bg-subtle); 
    color: var(--ya-black-color);
}
.ya-badge-low {
    background-color: var(--ya-info-bg-subtle); 
    color: var(--ya-black-color);
}
.ya-bg-black{
    background-color: var(--ya-black-color);
}
.ya-bg-success-subtle{
    background-color: var(--ya-bg-success-subtle);
}
.ya-bg-danger-subtle{
    background-color: var(--ya-danger-bg-subtle);
}
.ya-bg-warning-subtle{
    background-color: var(--ya-warning-bg-subtle);
}
.ya-bg-secondary{
    background-color: var(--ya-bg-secondary);
}
.ya-bg-success{
    background-color: var(--ya-bg-success);
}
.ya-bg-info{
    background-color: var(--ya-bg-info);
}
.ya-bg-warning{
    background-color: var(--ya-bg-warning);
}
.ya-bg-danger{
    background-color: var(--ya-bg-danger);
}

.ya-content-wrapper {
    width: 100%;
    display: flex;
    align-items: stretch;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px;
}
.ya-card.card {
    border:none;
    border-radius: var(--ya-border-radius);
    box-shadow: 0px 4px 6px -2px #0000000D;
    box-shadow: 0px 10px 15px -3px #0000001A;
}
.ya-card.card .card-body {
    padding: 0;
}
.ya-card.card .nav-link {
    font-weight: 600;
    color: var(--ya-body-text-color);
}
.ya-card.card .nav-item {
    border-right: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
}
.ya-card.card .nav-item:last-child {
    border-right: none;
}
.ya-card.card .nav-item a.nav-link{
    display:flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 10px;
}
.ya-card.card .nav-item.ya-active .nav-link {
    background: none;
    color: var(--ya-primary-color);
    border-bottom: 2px solid var(--ya-primary-color);
    border-radius: 0;
    font-family: var(--ya-secondary-font-family);
}
.ya-card.card .nav-item.ya-active .nav-link svg * {
    fill: var(--ya-primary-color);
}
.ya-card.card .nav-item .nav-link svg {
    width: 22px;
}
.ya-tab-content {
    display: none;
}
.ya-tab-content.active-content {
    display: block;
}
/*Button Start*/
.ya-button-wrap {
    display: block;    
}
.ya-button-wrap.ya-button-display-flex{
    display: flex;
}
.ya-button-wrap.ya-button-display-block{
    display: block;
}
.ya-button-wrap .ya-button {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--ya-white-color);
    background: var(--ya-primary-color);
    border: 1px solid var(--ya-primary-color);
    padding: 8px 14px;
    border-radius: var(--ya-border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    justify-content: center;
    font-family: var(--ya-secondary-font-family);
}
.ya-button-wrap .ya-button:hover {
    background: var(--ya-secondary-color);
    color: var(--ya-white-color);
    border-color: var(--ya-secondary-color);
}
/*Button Ens*/

/* Advice */
#ya_domain_advice .ya-connector-wrap:last-child .ya-advice-wrap{
    border-bottom: none;
}
.ya-advice-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 15px;
    border-bottom: 1px solid #1B1B1B1A;
    padding: 10px 30px 30px 30px;
}
.ya-advice-wrap .ya-advice-date {
    font-size: var(--ya-body-font-size);
    color: var(--ya-black-color);
    line-height: 22px;
}
.ya-advice-wrap .advice-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}
.ya-advice-wrap .advice-title span{
    color: var(--ya-black-color);
    font-size: var(--ya-title-font-size);
    font-weight: 600;
    line-height: 22px;
    font-family: var(--ya-secondary-font-family);
}
.ya-advice-wrap .advice-text {
    font-size: var(--ya-body-font-size);
    line-height: 22px;
    color: var(--ya-body-text-color);
    flex: 1;
    text-align: justify;
    font-family: var(--ya-primary-font-family);
}
.ya-advice-wrap .ya-advice-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}
.ya-advice-wrap .ya-refresh-advice {
    color: var(--ya-primary-color);
    cursor: pointer;
}
/*Spacing*/
.ya-y-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.ya-mb-6{
    margin-bottom: 1.5rem;
}
.ya-mr-3{
    margin-right: 1rem;
}
.ya-mr-2{
    margin-right: 0.5rem;
}
.ya-mr-1{
    margin-right: 0.25rem;
}
.ya-mt-1{
    margin-top: 0.25rem;
}
.ya-mt-2{
    margin-top: 0.5rem;
}
.ya-mt-3{
    margin-top: 1rem;
}
.ya-mt-6{
    margin-top: 1.5rem;
}
.ya-mx-6{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}
.ya-my-6{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.ya-mx-6{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}
.ya-ml-6{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

/* Login */

.ya-authentication-wrapper.ya-authentication-basic .ya-authentication-inner {
    max-width: 540px;
    position: relative;
    margin: 0 auto;
}
.ya-authentication-wrapper.ya-authentication-basic {
    align-items: center;
    justify-content: center;
}
.ya-app-brand {
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    overflow: hidden;
    line-height: 1;
    min-height: 1px;
    align-items: center;
}
.ya-app-brand-link {
    display: flex;
    align-items: center;
}
.ya-authentication-wrapper.ya-authentication-basic .card-body {
    padding: 3rem;
}
.ya-authentication-wrapper.ya-authentication-basic .card {
    background-clip: padding-box;
    box-shadow: 0 0.1875rem 0.75rem 0 rgba(47, 43, 61, 0.14);
}
/*Spin*/
.dashicons-spin {
    animation: dashicons-spin 1s infinite linear;
    display: inline-block;
}

@keyframes dashicons-spin {
    100% {
        transform: rotate(360deg);
    }
}

/*Error messagse*/
.ya-error {
    color: #FE665E;
}
.ya-success {
    color: #198754;
}
/*Welcome*/
.ya-welcome {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.ya-text {
    font-size: 18px;
    line-height: 22px;
    color: var(--ya-black-color); 
}
.ya-select {
    font-size: var(--ya-body-font-size);
    line-height: 22px;
    color: var(--ya-body-text-color); 
}
.ya-welcome .domain-count {
    color: var(--ya-primary-color);
}
.ya-select {
    width: 30%;
}
.ya-domain-select {
    border: 1px solid var(--ya-black-color);
    color: var(--ya-body-text-color);
    border-radius: 5px;
    width: 100%;
}

/*Loader Animation*/
.ya-loading-bar {
    position: relative;
    width: 100%;
    height: 100px;
    background: var(--ya-loading-light-color);
    overflow: hidden;
    margin-top: 10px;
}

.ya-loading-bar::before {
    content: "";
    position: absolute;
    left: -50%;
    width: 50%;
    height: 100%;
    
    background: var(--ya-loading-dark-color);
    animation: ya-loader-animate 3s infinite;
}

@keyframes ya-loader-animate {
    0% {
        left: -50%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}
/* Screenshot */
.ya-screenshot-img-wrap {
   
}
.ya-screenshot-img-wrap .ya-screenshot-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

/*Benefits*/

.ya-benefit-wrapper .ya-benefit-icon {
   margin-bottom: 15px;
}
.ya-fullwidth-hr {
    position: absolute;
    left: 0;
    width: 100vw;   /* Full viewport width */
    border: none;
    height: 1px;
    background-color: var(--ya-body-text-color); /* Bootstrap's default hr color */
    margin: 2rem 0;
}
#ya_premium_benefits .vr{
    width: 0.01rem;
}

/*Discount*/
.ya-discount-title {
    background: var(--ya-offer-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    
}
.ya-discount-header .ya-badge-text{
    font-size: 12px;
    line-height: 20px;
    color: var(--ya-body-text-color); 
    
    border-radius: var(--ya-border-radius);
    background-color: var(--ya-discount-header-bg-black);
}
.ya-discount-actions.ya-button-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.ya-discount-actions.ya-button-wrap .ya-button {
    font-size: 14px;
    font-weight: 600;
    color: var(--ya-black-color);
    background: transparent;
    border: 1px solid var(--ya-black-color);
    padding: 8px 16px;
    border-radius: var(--ya-border-radius);
    cursor: pointer;
    transition: all 0.3s easeIn;
    text-decoration: none;
    justify-content: center;
}

.ya-discount-actions.ya-button-wrap .ya-button:hover {
   
    color: var(--ya-white-color);
    background: var(--ya-primary-color);
    border: 1px solid var(--ya-primary-color);
    padding: 8px 16px;
    border-radius: var(--ya-border-radius);
    cursor: pointer;
    transition: all 0.3s easeIn;
    
    
    
}
.ya-discount-actions.ya-button-wrap .ya-button:hover svg * {
   
    fill: var(--ya-white-color);
    transition: all 0.3s easeIn;
    
}
/*Popup*/
.ya-popup img {
    margin-bottom: 15px;
}
.ya-popup .modal-content{
    padding: 0;
    border-radius: 10px;
}
.ya-popup .modal-header{
    padding: 10px 20px;
}
.ya-popup .modal-footer{
    padding: 16px;
}
.ya-popup .modal-body{
    padding: 10px 20px;
}
.ya-advice-instructions {
    padding: 20px;
}
.ya-advice-offer-item {
    padding: 20px;
}
.ya-popup .ya-advice-offer-item p{
    margin-bottom: 15px;
    line-height: 22px;
    font-size: var(--ya-body-font-size);
    color: var(--ya-secondary-color);
}
.ya-advice-resource-item img{
    width: 191px;
    height: 121px;
    object-fit: cover;
    border-radius: 10px;
}
.ya-advice-resource-item-inner {
    padding: 0 15px 15px 0;
}
.ya-advice-video-item img{
    width: 191px;
    height: 121px;
    object-fit: cover;
    border-radius: 10px;
}
.ya-popup .modal-title{
    font-size: var(--ya-title-font-size);
    line-height: 22px;
    font-weight: 600;
    color: var(--ya-black-color);
    margin-bottom: 0;
}
.ya-popup .modal-title span{
    font-size: var(--ya-title-font-size);
    font-weight: 600;
    color: var(--ya-black-color);
    margin-bottom: 0;
}
.ya-popup .modal-body p {
    font-size: 16px;
    line-height: 24px;
    color: var(--ya-body-text-color);
}
.ya-advice-offer-item {
    border: 2px solid var(--ya-primary-color);
    border-radius: 10px;
}
.ya-advice-offer-item h6 {
    font-size: var(--ya-title-font-size);
    line-height: 22px;
    font-weight: 600;
    color: var(--ya-black-color);
    margin-bottom: 15px;
}
.ya-advice-instructions-wrap .title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: var(--ya-black-color);
}
/*Monitor*/
.ya-monitor-summary-row {
    margin-top: 15px;    
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    display: none;
}
.ya-monitor-summary-row.border-active{
    border: 1px solid #181818;
}
.ya-monitor-summary-row.monitor-active{
    display: flex;
}
.ya-monitor-summary {
    padding: 15px;
    
}
.ya-monitor-summary .icon img {
    margin-bottom: 15px;
}
.ya-monitor-summary .content {
    text-align: center;
}
.ya-monitor-historical-data {
    display: none;
}
.ya-monitor-historical-data.monitor-active{
    display: flex;
}
.ya-monitor-historical-data table {
    margin-top: 15px;
    border-radius: 10px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid #ccc;
    width: 100%; 
    table-layout: auto;
}
.ya-monitor-historical-data table th {
    background-color: #F9FAFB;
    padding: 12px 16px;
    border-bottom: 1px solid #ccc;
}
.ya-monitor-historical-data table td {
    padding: 12px 16px;
    border-bottom: 1px solid #ccc;
}
.ya-monitor-historical-data table th,
.ya-monitor-historical-data table td{
    font-size: var(--ya-body-font-size);
    line-height: 22px;
    color: var(--ya-body-text-color);
    text-align: left;
    /* white-space: nowrap; 
    word-break: break-word; */
    padding: 12px 16px;
    
}
table th:first-child {
    border-top-left-radius: 10px;
}
table th:last-child {
    border-top-right-radius: 10px;
}
table tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}
table tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}
.ya-monitor-wrap .form-check-input{
    width: 4rem;
    height: 2rem;
}
.ya-monitor-wrap .form-check-input:checked{
    background-color: var(--ya-primary-color);
    border-color: var(--ya-primary-color);
}
.ya-monitor-wrap .form-check-input:focus{
    box-shadow: none;
}
.ya-monitor-wrap .form-check.form-switch{
    display: inline-flex;
    align-items: center;
    justify-content: start;
    padding: 0;
    gap: 64px;
}
.ya-date-range {
    display: flex;    
    gap: 12px;
    padding: 20px 0;
    align-items: center;
}
.ya-date-range input.form-control {
    border: 1px solid var(--ya-black-color);
    color: var(--ya-body-text-color);
    border-radius: 5px;
    width: 100%;
}
.ya-date-range .form-control:focus{
    box-shadow: none;
}

/*Footer*/
.ya-footer {
    background-color: var(--ya-footer-bg-color);
    color: var(--ya-black-color);
    box-shadow: 0px 4px 6px -2px #0000000D;
    box-shadow: 0px 10px 15px -3px #0000001A;
    min-height: 30px;
    margin-top: 48px;
}
.ya-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 30px;
}

/** Score */
.ya-score-title {
    display: flex;
    align-items: center;    
    gap: 12px;
}
.ya-score-title h6 {
    font-size: var(--ya-title-font-size);
    font-weight: 600;
    color: var(--ya-body-text-color);
    margin-bottom: 0;
}

.ya-score-title a {
    color: var(--ya-primary-color);
}
.ya-score span.ya-score-label {
    font-size: var(--ya-title-font-size);    
    color: var(--ya-white-color);
}
.ya-disabled {
    opacity: 0.5;
    pointer-events: none;
    /* cursor: not-allowed; */
}

.ya-disabled .nav-link {
    opacity: 0.5;
    cursor: not-allowed;
    /* pointer-events: none; */
}

.ya-disabled .nav-link svg {
    opacity: 0.5;
}

.ya-sm-label {
    display: none;
}
/*Responsive*/
@media (max-width: 768px) {
    .ya-content-wrapper {
        padding: 0;
        flex-direction: column;
    }
   .ya-select {
    width: 100%;
   }
   .ya-welcome {
    flex-direction: column;
    align-items: center;
   }
   .nav-link svg {
    display: none;
   }
   .ya-nav-tab-wrapper {
    flex-wrap: nowrap;
    overflow-x: auto;
   }
   .ya-sm-label {
    display: block;
   }
   .ya-lg-label {
    display: none;
   }
   .ya-advice-wrap .ya-advice-content{
    flex-direction: column;
    align-items: end;
   }
   #ya_premium_benefits .col-md-6 {
    border-bottom: 1px solid #ccc;
    padding-top: 15px;
   }
   #ya_premium_benefits .col-md-6:last-child {
    border-bottom: none;
   }
   .ya-popup .modal-body{
    padding: 16px;
   }
   .ya-resources-wrap {
    flex-direction: column;
   }
   .ya-resources-wrap .ya-advice-resource-item {
    width: 100%;
    margin-bottom: 15px;
   }
   .ya-resources-wrap .ya-advice-resource-item img {
    width: 100%;
   }
   .ya-advice-video-item {
    width: 100%;
    margin-bottom: 15px;
   }
   .ya-advice-video-item img {
    width: 100%;
   }
}
.ya-what-is-this {
    font-family: var(--ya-primary-font-family);
    font-size: var(--ya-body-font-size);
    line-height: 22px;
    color: var(--ya-secondary-color);
}