body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #f9f9f9;
  }

  .navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 80px;
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
    gap: 24px;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
}

.logo img {
    height: 80px;
    width: auto;
}

.search-container {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.search-container input {
    width: 100%;
    height: 40px;
    padding: 0 48px 0 24px;
    background-color: #eeeff1;
    border: none;
    font-size: 15px;
}

.search-container input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 114, 255, 0.2);
}

.search-container input::placeholder {
    color: #6B7280;
}

.search-icon {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    color: #6B7280;
}

.user-country {
    display: flex;
    align-items: center;
    margin-left: 60px;
    gap: 20px;
    flex-shrink: 0;
}

.user-country a {
    text-decoration: none;
}

.user-country button {
    background-color: #0072FF;
    color: white;
    font-weight: 600;
    padding: 0 50px;
    height: 40px;
    border: none;
    border-radius: 40px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.user-country button:hover {
    background-color: #0065E6;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.country-selector span {
    color: #111827;
    font-size: 15px;
    font-weight: 500;
}

.country-selector img {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    object-fit: cover;
}

/* Tablet Responsive Styles */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 16px;
        gap: 16px;
    }

    .search-container {
        max-width: 400px;
    }

    .user-country {
        gap: 16px;
    }

    .user-country button {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        gap: 12px;
    }

    .logo img {
        height: 70px;
    }

    .search-container input {
        height: 42px;
        font-size: 14px;
    }

    .user-country button {
        height: 42px;
        padding: 0 16px;
        font-size: 14px;
    }

    .country-selector span {
        font-size: 14px;
    }
}

.main-navbar {
    width: 100%;
    background-color: #F7F8FA;
    box-shadow: 0 4px 8px 0 #BCBCBC40;
    padding: 20px;
    display: flex;
    justify-content: space-evenly;
  }
  
  .main-navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
  }
  
  .main-navbar a:hover {
    color: #c2c4c6;
  }
  


  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding:0 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    height: 100px;
    margin: 20px auto;
    max-width: 1100px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
  
  .logo-box img {
    max-height: 60px;
    width: auto;
  }
  
  .title-box {
    flex-grow: 1;
    margin-left: 20px;
    padding-left: 10px;
    border-left: 2px dotted rgb(134, 134, 134);
  }
  
  .title-box h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #333;
  }
  
  .title-box p {
    margin: 0;
    font-size: 14px;
    color: #555;
  }
  
  .rating {
    margin-top: 6px;
    font-size: 14px;
    color: #f9a825; /* yellow stars */
  }
  
  .rating span {
    color: #333;
  }
  
  .icons {
    font-size: 28px; /* Increase icon size */
    display: flex;
    gap: 16px;
    color: #555555 !important;
  }
  
  .icons i {
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
  }

  .icons a {
    text-decoration: none;
    color: inherit; /* Inherit the color from parent (.icons) */
  }
  
  /* Hover effect */
  .icons i:hover {
    color: #0073e6;     /* Change to your brand color */
    transform: scale(1.15); /* Slight zoom on hover */
  }
  
  /* Optional: for star, switch to solid on hover */
  .icons .fa-star:hover {
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* makes it solid */
  }
  
  


  .tag-section {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 1100px;
    margin: 10px auto;
    flex-wrap: wrap;
    padding: 0 20px;
  }
  
  .tag-label {
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    margin-right: 40px;
  }
  
  .tag {
    background-color: #e9e9e9;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
  }
  
  /* On hover, change bg to blue and text to white */
  .tag:hover {
    background-color: #0073e6;
    color: white;
  }
  


  .container {
    display: flex;
    gap: 20px;
    margin: 20px 80px;
    padding: 30px;
  }

  .sidebar {
    width: 200px;
    height: auto;
    overflow-y: auto;
  }

  .sidebar-section {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0,0,0,0.05);
  }

  .sidebar-section h3 {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 15px 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
  }

  .stats p,
  .filter-options label {
    font-size: 13px;
    margin: 8px 0;
  }

  .stats p strong {
    float: right;
  }

  .filter-options input[type="checkbox"] {
    margin-right: 8px;
  }

  .categories {
    max-height: 140px;
    overflow-y: auto;
    padding-right: 10px;
  }

  /* Custom Scrollbar */
  .categories::-webkit-scrollbar {
    width: 5px;
  }

  .categories::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
  }

  .categories::-webkit-scrollbar-track {
    background-color: #f0f0f0;
  }

  .top-coupons{
    padding: 0% !important;
    background-color: #ddd !important;
  }
  .top-coupons h3 {
    background-color: #ccc;
    padding: 8px 10px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0% !important;
  }
  
.coupon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 0;
  border-bottom: 1px dashed #ccc;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease;
}

.coupon-item:last-child {
  border-bottom: none;
}

.coupon-item:hover {
  background-color: #eee; /* Light grey background on hover */
  border-bottom-color: transparent; /* Hide dashed line on hover */
}

.coupon-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 8px;
}

.coupon-item p {
  font-size: 13px;
  color: #0056b3;
  margin: 0;
}

.store-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #000;
    transition: background-color 0.2s ease;
  }
  
  .store-item:hover {
    background-color: #f9f9f9;
  }
  
  .store-item img {
    height: 30px;
    max-width: 100px;
    object-fit: contain;
  }
  
  .store-item span {
    font-size: 13px;
    color: #333;
  }
  
  .sidebar-section.text-links {
    background: #f7f7f7;
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
  }
  
  .sidebar-section.text-links h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 15px 0 10px;
    color: #333;
  }
  
  .sidebar-section.text-links ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  
  .sidebar-section.text-links ul li {
    margin-bottom: 6px;
  }
  
  .sidebar-section.text-links ul li a {
    color: #0094e6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
  }
  
  .sidebar-section.text-links ul li a:hover {
    color: #005999;
    text-decoration: underline;
  }
  
  .dec_area {
    display: none;
}

    /* Popup Styling */
    .custom-popup-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        animation: fadeIn 0.25s ease-out;
        backdrop-filter: blur(5px);
      }
      
      @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
      }
      
      @keyframes slideUp {
        from { transform: translateY(25px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
      }
      
      .custom-popup-box {
        background: #fff;
        width: 960px;
        max-width: 95%;
        display: flex;
        flex-wrap: wrap;
        border-radius: 16px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
        animation: slideUp 0.35s ease-out forwards;
      }
      
      .popup-close-btn {
        position: absolute;
        top: 18px; right: 18px;
        background: rgba(240, 240, 240, 0.8);
        border: none;
        height: 36px;
        width: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #444;
        cursor: pointer;
        transition: all 0.2s;
        z-index: 10;
      }
      
      .popup-close-btn:hover {
        background: rgba(226, 55, 68, 0.15);
        color: #e63946;
        transform: rotate(90deg);
      }
      
      .popup-left {
        flex: 1;
        padding: 40px 35px;
      }
      
      .popup-left h2 {
        font-size: 28px;
        line-height: 1.2;
        font-weight: 800;
        margin-bottom: 24px;
        color: #222;
        background: linear-gradient(135deg, #027cd5, #0099ff);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
      }
      
      .coupon-box {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 26px;
      }
      
      .coupon-box input {
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        padding: 14px 18px;
        border: 2px dashed #027cd5;
        border-radius: 8px;
        width: 180px;
        background-color: #f0f7ff;
        color: #027cd5;
        letter-spacing: 1px;
        user-select: all;
        outline: none;
        transition: all 0.2s;
      }
      
      .coupon-box input:focus {
        border-color: #0099ff;
        box-shadow: 0 0 0 3px rgba(2, 124, 213, 0.25);
      }
      
      .copy-btn {
        padding: 14px 24px;
        background: #027cd5;
        color: white;
        font-weight: 600;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s;
        position: relative;
        overflow: hidden;
      }
      
      .copy-btn:hover {
        background: #0066b3;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(2, 124, 213, 0.25);
      }
      
      .copy-btn:active {
        transform: translateY(0);
      }
      
      .visit-btn {
        display: inline-block;
        background-color: #22c55e;
        color: white;
        font-weight: bold;
        padding: 14px 28px;
        border-radius: 8px;
        text-decoration: none;
        margin-bottom: 16px;
        transition: all 0.2s;
        box-shadow: 0 5px 15px rgba(34, 197, 94, 0.25);
      }
      
      .visit-btn:hover {
        background-color: #16a34a;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
      }
      
      .visit-btn:active {
        transform: translateY(0);
      }
      
      .all-offers a {
        font-size: 15px;
        color: #027cd5;
        text-decoration: none;
        transition: all 0.2s;
        position: relative;
        font-weight: 500;
      }
      
      .all-offers a:hover {
        color: #0066b3;
      }
      
      .all-offers a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: #027cd5;
        transition: width 0.3s;
      }
      
      .all-offers a:hover::after {
        width: 100%;
      }
      
      .feedback-section {
        margin-top: 32px;
        font-size: 15px;
        background: #f5f5f5;
        padding: 14px 16px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        color: #444;
      }
      
      .feedback-section button {
        margin-left: 10px;
        padding: 6px 16px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.2s;
        font-weight: 500;
      }
      
      .feedback-section button:hover {
        background: #027cd5;
        color: white;
        border-color: #027cd5;
      }
      
      .description-section {
        margin-top: 32px;
        background: #f0f7ff;
        padding: 18px;
        border-radius: 10px;
        border-left: 4px solid #027cd5;
      }
      
      .description-section p {
        font-weight: bold;
        font-size: 16px;
        margin-bottom: 10px;
        color: #027cd5;
      }
      
      .description-section ul {
        padding-left: 20px;
        font-size: 15px;
        color: #444;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 8px 20px;
      }
      
      .description-section ul li {
        position: relative;
        padding-left: 5px;
      }
      
      .description-section ul li::before {
        content: '•';
        position: absolute;
        left: -12px;
        color: #027cd5;
        font-weight: bold;
      }
      
      .popup-right {
        width: 320px;
        background: #f8fbff;
        border-left: 1px solid #e6f0ff;
        padding: 30px 24px;
        overflow-y: auto;
      }
      
      .popup-right h3 {
        font-size: 18px;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 20px;
        color: #027cd5;
        position: relative;
        padding-bottom: 10px;
      }
      
      .popup-right h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: #027cd5;
        border-radius: 3px;
      }
      
      .popup-right a {
        display: block;
        background: #fff;
        padding: 14px 16px;
        margin-bottom: 14px;
        border-radius: 10px;
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: all 0.2s;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
        border-left: 3px solid transparent;
        line-height: 1.4;
      }
      
      .popup-right a:hover {
        background: #f0f7ff;
        color: #027cd5;
        border-left-color: #027cd5;
        transform: translateX(3px);
      }
      
      /* Responsive styles */
      @media (max-width: 768px) {
        .custom-popup-box {
          flex-direction: column;
          max-height: 90vh;
          overflow-y: auto;
        }
        
        .popup-right {
          width: 100%;
          border-left: none;
          border-top: 1px solid #e6f0ff;
        }
        
        .description-section ul {
          grid-template-columns: 1fr;
        }
        
        .coupon-box {
          flex-direction: column;
          align-items: stretch;
        }
        
        .coupon-box input {
          width: 100%;
        }
      }



























  .main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .coupon-card {
    display: flex;
    justify-content: space-between;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 10px;
    background: #fff;
  }
  
  .left {
    display: flex;
    flex: 1;
  }
  
  .discount {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-right: 15px;
    line-height: 1.2;
  }
  .discount span {
    font-size: 14px;
    display: block;
  }
  
  .details {
    flex-grow: 1;
  }
  
  .label {
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 5px;
  }
  
  .meta {
    font-size: 13px;
    color: #777;
  }
  .meta a {
    margin-right: 10px;
    text-decoration: none;
    color: #007bff;
  }
  
  .right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
  }
  
  .verified, .views {
    font-size: 12px;
    color: #444;
    margin-bottom: 5px;
  }
  
  .code-btn {
    border: none;
    color: #fff;
    padding: 10px 16px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .blue-btn { background: #007bff; }
  .green-btn { background: #28a745; }
  .red-btn { background: #dc3545; }
  
  .blue-text { color: #007bff; }
  .green-text { color: #28a745; }
  .red-text { color: #dc3545; }
  
  .save-alert {
    background: #e8ffe8;
    color: #006400;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    margin: -5px 0 15px 0;
  }

  





.code .text,
.code .value,
.code .z10,
a {
    color: #037cd5
}

.z3r,
body.zr {
    overflow: hidden
}

.z29>li>a,
.zv,
span#z27,
span#zn3 {
    white-space: nowrap
}

.z54,
.z54 img {
    object-fit: cover
}

.z1e .z1p div,
.z1h .zlj,
.z5i .zim li,
.z5o h3,
.z5p.zi .dec_area .zlq,
.z5p.zi .z10,
.z5p.zi .zdm .z5w,
.z5p.zi .zlm .zln,
.zlk .z59 li label,
.zlk>div>span,
.zy .zz {
    font-style: normal
}

.z23 svg,
.z2o,
.z8k svg,
.zq {
    pointer-events: none
}

.z16 .z17.z18,
.z29 .z2b .z2e,
.z56 h1,
.zgc,
.zhm article .title {
    text-overflow: ellipsis
}

.comment::after,
.z1b,
.z1h,
.z3h::after,
.zb,
.zb::after,
.zb::before,
.zde,
.zdz,
.zdz .message,
.zo:after {
    clear: both
}

a,
article,
aside,
b,
blockquote,
body,
caption,
div,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
label,
legend,
li,
menu,
nav,
object,
ol,
p,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
tfoot,
thead,
u,
ul {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline
}

button,
input {
    font-family: Calibri, sans-serif
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,
th {
    vertical-align: middle;
    padding: 10px 5px;
    border: 1px solid #aaa
}

svg {
    display: inline-block
}

* {
    box-sizing: border-box
}

.zb {
    display: block
}

.zb::after,
.zb::before {
    content: " ";
    display: table
}

.modal:before,
.zo:after {
    content: ""
}

.zc {
    margin: 0 -15px
}

.zg,
.zo {
    margin: 0 auto
}

.hidden {
    display: none !important
}

.zd {
    display: block
}

.ze {
    display: inline
}

.zf {
    display: inline-block
}

.zf8 {
    display: flex
}

.zg,
.zl,
.zm {
    display: block
}

.zh {
    float: left
}

.zi {
    float: right
}

.zj {
    text-align: center
}

.zk {
    text-align: left
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Calibri, sans-serif
}

.zm {
    width: 100%;
    height: auto
}

p:has(.zlh) {
    display: none
}

p:has(.zli) {
    all: unset !important;
    display: block !important;
    width: 100% !important
}

.zlh {
    display: none
}

.zli {
    display: block
}

.bank-coupons,
.category-coupons,
.storeCoupons,
.wallet-coupons {
    background: #f4f4f4
}

.zp2>.zp3>.zp4>.zp5>img {
    height: 100%;
    width: 100%
}

@font-face {
    font-family: Calibri;
    font-style: normal;
    font-weight: 400;
    src: local("Calibri"), url(/fonts/Calibri.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215;
    font-display: swap
}

@font-face {
    font-family: Calibri;
    font-style: normal;
    font-weight: 700;
    src: local("Calibri Bold"), local("Calibri-Bold"), url(/fonts/Calibri_bold.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215;
    font-display: swap
}

body .zn {
    display: none
}

a {
    text-decoration: none
}

.zo {
    max-width: 1170px;
    width: 100%;
    box-sizing: border-box
}

.redeem .z3u,
.unlock .z3u {
    margin-left: 5px;
    vertical-align: middle
}

.zo:after {
    display: block
}

.modal,
.redeem .z3s:not(.z3t),
.shop .z3s:not(.z3t),
.unlock .z3s:not(.z3t),
.zn+.z3v {
    display: none
}

#zp {
    cursor: pointer
}

.zq {
    background: #9E9E9E !important
}

.code .z3o,
.code .z3p,
.code .z3q {
    background: #037cd5
}

.z3n.z3o {
    -webkit-clip-path: none;
    clip-path: none
}

.code .z3q {
    color: #fff
}

.code .z3r,
.code .zog .value {
    background: #02508a
}

.exclusive .z3o,
.exclusive .z3p,
.exclusive .z3q {
    background: #679F42
}

.code .zne svg {
    fill: #037cd5
}

.exclusive .text,
.exclusive .value,
.exclusive .z10 {
    color: #679F42
}

.exclusive .z3q {
    color: #fff
}

.exclusive .z3r,
.exclusive .zog .value {
    background: #44692c
}

.deal .z3o,
.deal .z3p,
.deal .z3q {
    background: #fe7c60
}

.exclusive .zne svg {
    fill: #679F42
}

.deal .text,
.deal .value,
.deal .z10 {
    color: #fe7c60
}

.deal .z3q {
    color: #fff
}

.deal .z3r,
.deal .zog .value {
    background: #fe3d14
}

.view-offer .z3o,
.view-offer .z3p,
.view-offer .z3q {
    background: #f09516
}

.deal .zne svg {
    fill: #fe7c60
}

.view-offer .text,
.view-offer .value,
.view-offer .z10 {
    color: #f09516
}

.view-offer .z3q {
    color: #fff
}

.view-offer .z3r,
.view-offer .zog .value {
    background: #ae6a0b
}

.view-offer .zne svg {
    fill: #f09516
}

.exclusive-offer .z3o,
.exclusive-offer .z3p {
    background: #03A9F4
}

.exclusive-offer .text,
.exclusive-offer .value,
.exclusive-offer .z10 {
    color: #03A9F4
}

.exclusive-offer .z3q {
    background: #03A9F4;
    color: #fff
}

.exclusive-offer .z3r,
.exclusive-offer .zog .value {
    background: #0275a8
}

.book-now .z3o,
.book-now .z3p,
.book-now .z3q {
    background: #e43636
}

.exclusive-offer .zne svg {
    fill: #03A9F4
}

.book-now .text,
.book-now .value,
.book-now .z10 {
    color: #e43636
}

.book-now .z3q {
    color: #fff
}

.book-now .z3r,
.book-now .zog .value {
    background: #b51818
}

.order-now .z3o,
.order-now .z3p,
.order-now .z3q {
    background: #4ecaca
}

.book-now .zne svg {
    fill: #e43636
}

.order-now .text,
.order-now .value,
.order-now .z10 {
    color: #4ecaca
}

.order-now .z3q {
    color: #fff
}

.order-now .z3r,
.order-now .zog .value {
    background: #2f9d9d
}

.unlock .z3o,
.unlock .z3p,
.unlock .z3q {
    background: #00bcd4
}

.order-now .zne svg {
    fill: #4ecaca
}

.unlock .text,
.unlock .value,
.unlock .z10 {
    color: #00bcd4
}

.unlock .z3q {
    color: #fff
}

.unlock .z3r,
.unlock .zog .value {
    background: #007888
}

.redeem .z3o,
.redeem .z3p,
.redeem .z3q {
    background: #F6BB28
}

.unlock .zne svg {
    fill: #00bcd4
}

.redeem .text,
.redeem .value,
.redeem .z10 {
    color: #F6BB28
}

.redeem .z3q {
    color: #fff
}

.redeem .z3r,
.redeem .zog .value {
    background: #c99208
}

.shop .z3o,
.shop .z3p,
.shop .z3q {
    background: #dd4b45
}

.redeem .zne svg {
    fill: #F6BB28
}

.shop .text,
.shop .value,
.shop .z10 {
    color: #dd4b45
}

.shop .z3q {
    color: #fff
}

.shop .z3r,
.shop .zog .value {
    background: #b52721
}

.enroll-now .z3o,
.enroll-now .z3p,
.enroll-now .z3q {
    background: #dd604b
}

.shop .zne svg {
    fill: #dd4b45
}

.enroll-now .text,
.enroll-now .value,
.enroll-now .z10 {
    color: #dd604b
}

.enroll-now .z3q {
    color: #fff
}

.enroll-now .z3r,
.enroll-now .zog .value {
    background: #b93823
}

.enroll-now .zne svg {
    fill: #dd604b
}

.shop .z3u {
    vertical-align: middle;
    margin-left: 10px;
    margin-top: -2px
}

.unlock .z3u {
    margin-top: -4px
}

.redeem .z3u {
    margin-top: -8px
}

.z3r:hover .z3v {
    transform: translateX(0)
}

.z3r:hover .z3w {
    transform: translateX(-100%)
}

.z3r .z3v {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 10;
    top: 0;
    transform: translateX(100%);
    background-color: transparent !important
}

.ziv,
.zs {
    font-size: 30px;
    position: absolute;
    vertical-align: middle;
    line-height: 25px;
    text-align: -webkit-center;
    z-index: 1;
    text-decoration: none;
    cursor: pointer
}

.z3r .z3v,
.z3r .z3w {
    transition: transform .35s ease-in-out !important
}

.z3r svg {
    fill: #fff;
    vertical-align: middle
}

.zs {
    color: #969696;
    background: #fff;
    right: 10px;
    top: 10px;
    width: 24px;
    height: 25px
}

.zs:hover {
    color: #494949
}

.ziv {
    right: 14px;
    top: 12px;
    width: 17px;
    height: 20px
}

.modal,
.modal:before {
    position: fixed;
    left: 0
}

.modal,
.modal>div {
    width: 100%;
    height: 100%
}

.modal {
    top: 0;
    z-index: 10000;
    overflow-y: scroll;
    padding: 25px
}

.modal>div {
    display: table
}

.zv,
button#zx {
    width: 50%;
    height: 50px;
    vertical-align: middle
}

.modal:before {
    opacity: 0;
    background: #000;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    -webkit-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    -ms-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    will-change: opacity
}

.modal.open:before {
    opacity: .6
}

.modal.open .zt {
    transform: translate3d(0, 0, 0)
}

.modal-dialog {
    display: table-cell;
    text-align: center;
    vertical-align: middle
}

.zt,
button#zx {
    display: inline-block
}

.zt {
    background: #fff;
    text-align: initial;
    position: relative;
    overflow-y: auto;
    border-radius: 5px;
    max-width: 950px;
    min-width: 500px;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    -moz-transition: -moz-transform .3s ease-in-out;
    -o-transition: -o-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    -webkit-transform: translate3d(0, -150vh, 0);
    -ms-transform: translate3d(0, -150vh, 0);
    -moz-transform: translate3d(0, -150vh, 0);
    transform: translate3d(0, -150vh, 0);
    -webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, .2);
    -moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, .2);
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, .2);
    border: 1px solid #ddd;
    will-change: transform
}

.zw,
.zy h3 {
    text-align: center
}

.z13 .z1c,
.z16 .z17.z18,
.z1e .z1p div,
.z28>ul,
.z53,
.z56,
.z56 h1,
.z59,
.zy .zz {
    overflow: hidden
}

#zu {
    display: none
}

.zv {
    background-color: #f6f7fb;
    border: 1px dashed #027cd5;
    color: #2e2e2e;
    line-height: 50px;
    box-sizing: border-box
}

.zw {
    font-size: 0
}

button#zx {
    background: #037cd5;
    font-size: 15px;
    font-weight: 700;
    border: none;
    color: #fff;
    padding: 0
}

.zy .zt {
    max-width: 1000px;
    max-height: 100% !important;
    width: 100% !important
}

.zy h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 22px;
    margin-top: 40px
}

.zy .zz {
    padding: 0 30px 0 0;
    text-transform: none;
    display: block;
    text-align: left;
    height: 130px;
    margin: 5px 0 15px;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #333
}

#z25 .zn4,
.z16 .z17.z18,
.z1a p,
.z1e .z1p div,
.zy .z10,
span#z27,
span#zn3 {
    text-transform: uppercase
}

.zy .zz ul {
    margin: 0;
    padding-left: 16px;
    list-style: outside
}

.zy .zz table {
    width: 92%;
    border-spacing: 1px;
    margin-top: 2px
}

.z16,
span.z11 {
    width: 50%;
    float: left
}

.zy .zz table tr {
    text-align: center
}

.zy .zz p {
    line-height: 24px;
    font-size: 14px;
    height: initial;
    text-align: left
}

.zy .z10 {
    font-size: 10px;
    color: #037cd5;
    font-weight: 700;
    bottom: 0;
    position: absolute;
    right: 0;
    background: #fff;
    padding: 0 20px;
    line-height: 22px;
    cursor: pointer
}

a.z12,
span.z11 {
    font-weight: 600
}

.z13,
.z13 .z1f,
.z1e .z1p {
    position: relative
}

span.z11 {
    padding: 24px 0 0;
    font-size: 15px;
    display: block;
    text-align: center
}

.z14,
.z16 .z17.z18,
.z1a p {
    display: inline-block
}

.z16,
.z1c.z1j .z1l,
.z1e h3 {
    text-align: left
}

span.z11 a {
    color: #047cd3;
    text-decoration: none
}

a.z12 {
    color: #027cd5;
    text-decoration: underline;
    font-size: 14px;
    line-height: 21px
}

#z1y li a,
.z1i,
.z29>li>a,
span#z27,
span#zn3 {
    text-decoration: none
}

.z13 {
    padding: 15px 15px 0
}

.z14 {
    font-weight: 700;
    padding-left: 10px;
    font-size: 16px;
    vertical-align: middle;
    flex-grow: 1
}

span.z15 a {
    font-size: 20px
}

.z16 {
    padding: 15px 0 0
}

.z16 .z17.z18 {
    font-size: 14px;
    background: #52af52;
    border: none;
    box-shadow: none;
    color: #fff;
    padding: 10px 15px
}

.z16 .z15 {
    width: 100%
}

.z19 {
    max-width: 130px
}

.z1a {
    padding-right: 10px
}

.z1a p {
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    vertical-align: middle
}

.z1b {
    background: #f6bb43;
    color: #fff;
    line-height: 45px;
    -webkit-display: flex;
    -moz-display: flex;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.z1f,
.z1f .z15,
.z1g,
.z1g .z15 {
    display: inline-block
}

.z1b input[type=text] {
    border-radius: 3px;
    height: 37px;
    font-size: 15px;
    padding: 0 15px;
    color: #696969;
    border: 1px solid #fff
}

.z1b input[type=submit] {
    background: 0 0;
    color: #fff;
    border-radius: 3px;
    border: 1px solid #fff;
    width: 100px;
    height: 37px;
    margin-top: -2px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase
}

.z1b input[type=submit]:hover {
    background: #e2a733
}

.z1e li .z1n,
.z1e li a,
.z1h .z17 {
    background: #FFF;
    border-radius: 5px;
    will-change: box-shadow
}

.z13 .z1c {
    margin-bottom: 35px;
    height: auto;
    z-index: 0
}

.z13 .z1c span.z1d {
    padding-right: 30px
}

.z13 .z1c span.z1d img {
    margin-left: 20px
}

.z13 .z1c h3 {
    margin-top: 0;
    margin-bottom: 11px;
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    color: #2E2E2E
}

.z13 .z1e {
    padding: 0
}

.z13 .z1f {
    padding: 0 15px 0 0
}

.z13 .z1g {
    padding: 0 0 0 15px
}

.z13 .zw {
    margin: 15px 0
}

.z13 .z1h {
    float: none !important;
    margin-bottom: 30px
}

span.z15.zi {
    float: right
}

.z1j {
    margin-bottom: 0 !important
}

.z1f,
.z1g {
    width: 50%;
    vertical-align: top;
    float: left;
    min-height: 125px
}

#modal_subscribe .z3y,
#z1x a .zij,
#z1x>a>svg,
.z1e .z1o,
.z1e .z1p,
.z1e .z1p div {
    vertical-align: middle
}

.z1f {
    border-right: 1px dashed #aaa;
    padding: 10px 10px 10px 0
}

.z1g {
    padding: 25px 0 10px 10px
}

.z1k {
    margin-top: 0 !important
}

.z1c.z1j p {
    padding-left: 0
}

.z1c.z1j .z1l {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 0
}

.z1e {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 20px
}

.z1e h3 {
    margin: 0 20px 10px;
    font-weight: 600
}

.z1e .z1o,
.z1h {
    text-align: center
}

.z1e.z1m li:nth-child(n+7) {
    display: none
}

.z1e li {
    width: 100%;
    padding: 0 1.5%
}

.z1e li .z1n,
.z1e li a {
    display: table;
    transition: .1s all ease;
    width: 100%;
    box-shadow: 2px 2px 6px rgba(58, 58, 58, .25);
    margin-bottom: 20px;
    padding: 1px 0;
    cursor: pointer
}

.z1e li .z1n:hover,
.z1e li a:hover {
    box-shadow: 0 2px 6px rgba(58, 58, 58, .35)
}

.z1e .z1o {
    width: 100px;
    padding: 5px;
    box-sizing: border-box;
    display: table-cell;
    border-right: 2px solid #ddd
}

.z1e .z1o img {
    width: 100%;
    display: block
}

.z1e .z1p {
    display: table-cell;
    font-size: 12px;
    padding: 0 10px;
    line-height: 16px;
    color: #444;
    font-weight: 500
}

.z1e .z1p div {
    display: inline-block;
    max-height: 30px;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #2E2E2E
}

.z1e .z1q {
    color: #027cd5;
    font-size: 22px;
    position: absolute;
    right: 9px;
    bottom: 0
}

.z1e .z1r {
    position: absolute;
    bottom: -2px;
    right: 0;
    font-weight: 600
}

.z1s,
.z1s form {
    position: relative
}

.z1h {
    padding-top: 15px
}

.z1h .zlj {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #333
}

.z1h .z17 {
    padding: 5px 10px;
    max-width: 50px;
    display: inline-block;
    box-shadow: 2px 2px 6px rgba(58, 58, 58, .25);
    margin-top: 10px;
    color: #298fd9;
    outline: 0;
    transition: all .3s cubic-bezier(.4, 0, .6, 1);
    border: 0
}

.z1h .z17:hover {
    box-shadow: 2px 3px 3px 1px rgba(41, 143, 217, .35)
}

#modal_subscribe .z3x {
    padding: 10px;
    display: table;
    width: 100%
}

#modal_subscribe .zt {
    max-width: 650px
}

#modal_subscribe .z3y {
    width: 120px;
    margin-right: 20px;
    display: table-cell
}

#modal_subscribe .z3z {
    padding: 30px 50px 25px
}

#modal_subscribe .z2k {
    border-radius: 7px;
    font-weight: 700;
    outline: 0;
    border: 1px solid #ccc;
    text-align: left
}

#modal_subscribe .title {
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: .4px;
    margin: 0;
    display: table-cell;
    vertical-align: middle
}

#modal_subscribe .submit {
    text-align: center;
    background-color: #f6bb43;
    cursor: pointer;
    color: #fff;
    border: none
}

body,
header {
    background: #fff
}

#modal_subscribe .z40 {
    font-size: 13px;
    line-height: 1.5;
    color: #565a5c
}

#z1t,
#z1y li a {
    font-size: 14px
}

#modal_subscribe p.z40 {
    font-weight: 700;
    margin: 0
}

#modal_subscribe ol.z40 {
    list-style-type: decimal;
    padding: 5px 15px;
    margin: 0
}

.z30 ul li,
.z5p.zi .dec_area li {
    list-style-type: disc
}

#modal_subscribe #z3j {
    color: red;
    font-size: 14px;
    margin: 0
}

body {
    font-family: Calibri, sans-serif
}

header {
    box-sizing: border-box;
    padding: 12px 0
}

.zje {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 8px
}

#z1x {
    border: none;
    outline: 0
}

#z1x>a>svg {
    width: 100%;
    fill: #027cd5
}

.z1s button.z1w svg,
span#z27 svg,
span#zn3 svg {
    fill: #fff
}

.zjf {
    width: 12vw
}

#z1x a .zij {
    width: 100%;
    height: 42px;
    padding: 3px
}

#z25 img,
#z27 img {
    height: 25px;
    vertical-align: middle
}

.z1s {
    display: table-cell;
    max-width: 100%;
    width: 48vw
}

#z1t,
#z1y {
    width: 100%
}

#z1t {
    box-sizing: border-box;
    padding: 11px 20px;
    line-height: 17px;
    color: #929292;
    outline: 0;
    border: 0;
    background-color: #EFEFEF
}

.z1s button,
header button.z1u {
    border: 0;
    outline: 0;
    color: #efefef;
    padding: 10px;
    cursor: pointer;
    max-height: 38px;
    box-sizing: border-box
}

#z1v svg {
    vertical-align: middle
}

.z1s button.z1w {
    background: #efefef;
    position: absolute;
    top: 0;
    right: 5px;
    z-index: 110;
    display: inherit
}

#z1y li a:hover,
#z1y li.z1z {
    background: #f5f5f5
}

#z1y {
    position: absolute;
    left: 0;
    top: 41px;
    z-index: 999;
    display: none;
    padding: 0 40px
}

#z25,
#z25>.z28>ul>li,
.z22 {
    position: relative
}

#z1y li a,
#z1y li.z21 {
    letter-spacing: .2px;
    padding: 8px 20px
}

#z1y ul {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .6)
}

.z28::after,
.z28>ul {
    box-shadow: 0 0 4px rgba(0, 0, 0, .3)
}

#z1y li {
    box-sizing: border-box
}

#z1y li a {
    color: #2b2b2b;
    display: block
}

#z1y li a.z20 {
    background: #fff !important
}

#z1y li.z21 {
    color: #565656;
    font-size: 16px;
    background: #dcdcdc
}

#z1y li.z21:nth-child(n+2) {
    margin-top: 7px
}

.z22 {
    word-spacing: 15px
}

span#z27,
span#zn3 {
    padding: 11px 20px 10px;
    display: inline-block;
    color: #fff;
    border-radius: 30px;
    word-spacing: initial;
    background: #027cd5;
    width: 150px
}

span#js_logout_link#zp,
span#login_link_profile#zp {
    border: 1px solid #fff
}

#z25 {
    background: 0 0;
    padding: 0 10px
}

#z25 .zn4 {
    font-size: 19px;
    line-height: 21px;
    font-weight: 700;
    color: #027cd5;
    border-right: 2px solid #027cd5;
    padding-right: 10px
}

#z25 .z26 {
    margin-right: -10px;
    margin-left: -10px
}

#z25>.z28>ul>li {
    word-spacing: 10px;
    background: #fff;
    color: #247cd5;
    z-index: 1000
}

#z27,
#z27 .z28,
#z27>.z28>ul>li {
    word-spacing: initial
}

#z25 .z28 li>a>span,
#z25 li>a>span {
    min-width: 40px;
    display: inline-block;
    font-size: 14px;
    line-height: 25px;
    font-weight: 700;
    color: #027cd5
}

#z25>.z28>ul>li>a {
    padding: 11px 20px;
    display: flex;
    justify-content: space-around;
    gap: 6px
}

.z37,
.zjg {
    justify-content: center
}

#z25>.z28>ul>li:hover {
    background: #ddd
}

#z25 img {
    display: inline-block;
    width: 25px;
    margin: 0 -6px
}

#z25:hover>.z28 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

#z27 .z26 {
    position: absolute;
    right: 10%;
    top: 45%;
    transform: translateY(-40%)
}

#z27 .z28 li>a>span,
#z27 li>a>span {
    min-width: 40px;
    display: inline-block
}

#z27,
#z27>.z28>ul>li>a {
    padding: 11px 12px;
    width: 150px
}

#z27>.z28>ul>li:hover {
    background: #f3f2f2
}

#z27>.z28>ul>li>a {
    display: block
}

#z27 img {
    display: inline-block;
    width: 25px;
    margin: -5px 0
}

#z27:hover>.z28 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.z28,
.z2x {
    visibility: hidden
}

#z27,
#z27>.z28>ul>li {
    text-transform: capitalize;
    font-size: 16px;
    background: #fff;
    color: #247cd5;
    position: relative;
    z-index: 1000
}

.z28 {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    z-index: 1000;
    padding-top: 10px;
    opacity: 0;
    transition: all .2s ease-in-out;
    transform: translateY(15px);
    text-align: left
}

.z28>ul {
    background: #fff;
    border-radius: 4px;
    position: relative
}

.z28::after {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    background: #fff;
    transform: rotate(45deg);
    top: 5px;
    left: 15px
}

.z29,
.zjg {
    width: 100%
}

nav#z2h {
    background: #F7F8FA;
    box-shadow: 0 4px 8px 0 #BCBCBC40;
    -webkit-box-shadow: 0 4px 8px 0 #BCBCBC40;
    -moz-box-shadow: 0 4px 8px 0 #BCBCBC40
}

.zjg {
    display: flex;
    align-items: center
}

.z29 {
    position: relative;
    cursor: default;
    z-index: 500;
    -ms-box-orient: horizontal;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-flow: row no-wrap;
    flex-flow: row no-wrap
}

.zgm,
.zkt {
    align-items: center
}

.z29>li>a {
    text-shadow: none;
    padding: 15px 10px;
    text-transform: uppercase;
    font-size: 16px;
    display: inline-block;
    color: #464646
}

.z29 .z2b .z2f,
.z52 {
    text-transform: capitalize
}

.zd2,
.zen .z1c {
    white-space: normal
}

.z29>li>a.z2a {
    color: #037cd5;
    font-weight: 600
}

.z29>li:hover>a {
    font-weight: 500;
    color: #929292
}

.z29 .z2b>ul {
    background: #fff;
    position: absolute;
    padding: 20px 0;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2);
    width: 55%;
    border: 1px solid #eee;
    display: none;
    border-top: 2px solid #027cd5;
    font-size: 0
}

.z29 .z2b>ul li {
    display: inline-block;
    padding: 0 15px;
    width: 33.33333%;
    box-sizing: border-box
}

.z29 .z2b>ul li:nth-last-child(-n+3) .z2c {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0
}

.z29 .z2b>ul:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12.5px 10px;
    border-color: transparent transparent #027cd5;
    left: 32px;
    top: -10px
}

.z54,
.z55,
.z55>div,
.z56,
.zei .ze9 {
    position: relative
}

.z29 .z2b .z2c {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee
}

.z29 .z2b .z2c a {
    display: block
}

.z29 .z2b .z2c a:hover .z2d {
    border-color: #027cd5
}

.z29 .z2b .z2c a:hover .z2e {
    text-decoration: underline
}

.z52 a,
.zat,
.zcz {
    text-decoration: none
}

.z29 .z2b .z2c a:hover .z2e,
.z29 .z2b .z2c a:hover .z2f,
.z29 .z2b .z2c a:hover .z2g {
    color: #027cd5
}

.z29 .z2b .z2d {
    width: 60px;
    padding: 2px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle
}

.z54,
.zgm>span {
    border-right: 1px solid #ddd
}

.z57,
.zin {
    border-left: 1px solid #ddd
}

.z29 .z2b .z2d img {
    width: 100%;
    display: block
}

.z29 .z2b .z2e {
    display: inline-block;
    vertical-align: middle;
    max-width: 100px
}

.z29 .z2b .z2f {
    display: block;
    color: #4a4a4a;
    font-size: 14px;
    font-weight: 700
}

.z29 .z2b .z2g {
    display: block;
    color: #a0a0a0;
    font-size: 12px
}

.z29 .z2b:hover>ul,
.z29 .z2b>a:focus+ul {
    display: block
}

.z52 {
    text-align: right;
    margin: 10px 0;
    font-size: 10px;
    color: #b3b3b3
}

.z23,
.z54,
.z55>div,
.z5g,
.zej,
.zjn .zjo,
.zlk>div {
    text-align: center
}

.z56 h1,
span.z6a {
    text-transform: uppercase
}

.z52 a {
    margin-right: 3px;
    color: #3baeda
}

.z53 {
    background: #fff;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .3);
    border-radius: 5px
}

.z53>div {
    display: table;
    width: 100%
}

.z54,
.z55>div {
    box-sizing: border-box;
    width: 195px;
    display: table-cell;
    vertical-align: middle
}

.z55>div {
    background: #027cd5
}

.z55>div>span {
    color: #fff;
    font-size: 13px;
    font-weight: 700
}

.z54 {
    padding: 5px;
    height: 105px
}

.z54 img {
    width: 80%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    max-width: 152px
}

.z56 {
    padding: 12px 15px 5px;
    display: table-cell;
    vertical-align: top
}

.z2o,
.z3r .z3u,
.z3r span,
.z5r .z5s svg,
.z5t span,
.z5t svg,
.z5v.zlr svg,
.ze9 .zcg,
.ze9 svg,
.zlk>div,
li.zcd .zcf svg,
li.zcd .zcg {
    vertical-align: middle
}

.z56 h1 {
    margin: 0;
    color: #464646;
    font-weight: 700;
    font-size: 26px;
    max-height: 56px;
    padding-top: 1px
}

.zat,
.zcz {
    color: #1967D2;
    display: inline-block;
    font-size: 14px
}

.zat:hover,
.zcz:hover {
    text-decoration: underline;
    cursor: pointer
}

.z57 a,
.z5i a,
.z5k ul li a,
.z5o a.z12,
.zcz:hover {
    text-decoration: none
}

.zcz {
    color: #2e2e2e;
    margin-top: 6px
}

.zcz:hover {
    cursor: inherit
}

#zd0,
.z23,
.z57,
.z59 li label {
    cursor: pointer
}

span.zca,
span.zeh {
    display: block;
    font-size: 12px;
    margin: 0 5px 2px
}

.ze9,
.ze9 .zcg {
    display: inline-block
}

.zei {
    height: 22px;
    width: 100%;
    margin: 5px 0;
    color: #8b8b8b;
    padding: 3px 0
}

.zei .ze9 {
    width: 80px;
    height: 15px;
    top: -5px
}

.zin {
    color: #d61002;
    padding-left: 10px;
    font-weight: bolder
}

.z57 span,
.z59 li label,
.zjn .zjo,
.zlk>div>span {
    font-weight: 700
}

.zin:hover {
    padding: 3px;
    border: 1px solid #ddd;
    -webkit-box-shadow: 1px 1px 3px 1px rgba(209, 139, 139, .2);
    -moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, .2);
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, .2)
}

.author>.zfa,
.zgm>.zfa {
    width: 30px;
    border-radius: 30px
}

.ze9 {
    fill: #b4b3b3;
    margin: 3px 0;
    font-size: 0
}

.ze9 .zcg {
    font-size: 11px;
    letter-spacing: 1px;
    color: #8b8b8b
}

.z23,
.z2k,
.zel .answer {
    letter-spacing: .5px
}

span.z6a {
    font-size: 14px;
    color: #8b8b8b;
    margin: 10px 0
}

.author>.zfa,
.z59 li,
.zgm>.zfa,
.zgm>span {
    margin-right: 10px
}

.zgm {
    font-size: 13px;
    padding-top: 5px;
    display: flex;
    justify-content: flex-start
}

.zgm>.zfa {
    height: 30px
}

.zgm>span {
    font-size: 14px;
    padding: 5px 10px 0 0
}

.author,
.zkt {
    font-size: 13px;
    display: flex
}

.zgm>span>p {
    padding: 6px 0 0 4px
}

.zgm>span:last-child {
    border-right: none
}

.zkt {
    padding-top: 5px;
    justify-content: flex-start;
    height: 25px
}

.author {
    padding-top: 10px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1.75rem
}

.z57 a,
.z59 li {
    display: inline-block
}

.author>.zfa {
    height: 30px
}

.author>span {
    font-size: 14px
}

.author>span>p {
    padding: 6px 0 0 4px
}

.z57 a.followBtn.z58 svg {
    fill: #e43636
}

.z57 span {
    color: #fff;
    padding: 0 10px;
    font-size: 25px
}

.z57 span svg {
    fill: #b4b3b3
}

.z59 {
    padding: 7px 60px 0 15px;
    border-top: 1px solid #ddd;
    height: 40px
}

.z59 li {
    margin-bottom: 7px
}

.z59 li input {
    display: none
}

.z59 li input:checked+label {
    color: #fff;
    background: #027cd5
}

.z59 li label {
    padding: 6px 17px;
    background: #f4f4f4;
    color: #949494;
    font-size: 13px;
    text-transform: capitalize;
    transition: all .1s ease-in-out;
    display: inline-block;
    border-radius: 15px
}

#zd0,
.zjn .zjo {
    font-size: 14px
}

.z59 li label:hover {
    color: #fff;
    background: #59b8fd
}

.z59 li label.z2a {
    color: #fff;
    background: #027cd5
}

#zd0 {
    position: absolute;
    right: 10px;
    top: 14px;
    color: #555;
    display: none
}

.zjn {
    position: relative;
    display: inline-block
}

.zjn .zjo {
    opacity: 0;
    width: 60px;
    background-color: rgba(246, 187, 67, .7);
    color: #fff;
    border-radius: 5px;
    padding: 2px 0;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    margin-left: -30px;
    transition: opacity .6s ease-in-out
}

.zjn:hover .zjo {
    opacity: 1
}

.zlk {
    display: flex;
    background-color: transparent;
    justify-content: start;
    align-items: center;
    margin-top: 10px
}

.zlk>div {
    box-sizing: border-box;
    min-width: 195px;
    width: 195px;
    display: table-cell;
    position: relative
}

.zlk>div>span {
    font-size: 15px;
    line-height: 18px;
    color: #2E2E2E
}

.zlk>div>span svg {
    fill: #2E2E2E
}

.zlk .z59 {
    border: none
}

.zlk .z59 li label {
    background: #cdcdd0;
    border-radius: 17px;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #000
}

.zlk .z59 li label:hover {
    background: #247CD5;
    color: #fff
}

.sidebar {
    float: left;
    width: 195px;
    margin-bottom: 20px
}

.sidebar.z5b.z5c {
    position: relative !important;
    height: initial
}

.sidebar.z5b.z5c>* {
    display: block !important
}

.z5b {
    position: fixed;
    top: 0;
    height: 100%;
    height: 100vh;
    overflow-y: auto;
    padding-bottom: 15px;
    padding-top: 15px
}

.z2i,
.zel .answer {
    position: relative
}

.dec_area,
.z5i,
.z5l a,
.z5o,
.z5p.zh,
.zd2,
.zel .answer {
    overflow: hidden
}

.z5b>* {
    display: none
}

.z5b .z48 {
    display: block
}

.z5d::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    border-radius: 10px;
    background-color: #F5F5F5
}

.z5d::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5
}

.z5d::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #c1c1c1
}

.z5i,
.zhb {
    background: #fff
}

#fixed-hidden-sidebar {
    display: none
}

.z5e {
    float: right;
    width: 960px
}

.z5e .z5f {
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 700;
    color: #005387;
    margin: 20px 0
}

.z5i.zek .zck,
.z5i.zek .zel>li h4.title,
.z5k h3,
.z5k ul li a,
.z5l a {
    text-transform: capitalize
}

.z5g {
    display: block
}

.z5g>img {
    margin-top: 16px;
    max-height: 150px;
    display: inline-block;
    width: 100%;
    margin-bottom: -5px
}

.z5h {
    margin: 15px 0
}

.zhb {
    font-size: 1.8em;
    margin: 0 0 15px;
    padding: 16px 10px;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .1);
    color: #333;
    border-left: 2px solid #F44336
}

.z5i {
    -webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, .2);
    -moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, .2);
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, .2);
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 16px
}

.z5i:first-child {
    margin-top: 16px
}

.z5b .z5i:first-child {
    margin-top: 0
}

.z5i h3,
.z5i h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    color: #2E2E2E;
    margin-bottom: 4px
}

.z5i.z5j {
    padding: 8px 8px 0
}

.zej {
    background: #f1663b;
    color: #fff;
    padding: 7px;
    margin-top: 16px;
    font-size: 14px
}

.zej img {
    width: 117px;
    height: 40px;
    margin-top: 19px
}

.zej input[type=text] {
    width: 100%;
    border: 0;
    padding: 5.5px;
    border-radius: 3px;
    margin-bottom: 6px;
    color: #959595;
    font-size: 12px
}

.zej input[type=submit] {
    background: #363636;
    border: 0;
    color: #fff;
    padding: 5.5px;
    width: 100%;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600
}

.zej p {
    font-size: 16px;
    margin-bottom: 12px;
    margin-top: 9px
}

.z5k {
    margin-top: 15px
}

.z5k h3 {
    color: #555;
    margin-bottom: 14px;
    font-weight: 700
}

.z5k ul li {
    list-style: none;
    margin-bottom: 5px
}

.z5k ul li a {
    color: #3baeda;
    font-size: 14px
}

.z5l {
    margin-bottom: 20px
}

.z5l img {
    float: left;
    margin-right: 20px
}

.z5l .z5m {
    width: 75px;
    height: 30px;
    float: left;
    margin-right: 15px
}

.z5l a {
    color: #333
}

.z5l:last-child {
    margin-bottom: 0
}

.z5n {
    display: block;
    color: #333 !important;
    font-size: 12px;
    padding-top: 10px
}

.z5i.zek .zel>li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd
}

.z5i.zek .zel>li:last-of-type {
    border-bottom: 0
}

.z5i.zek .zel>li svg {
    fill: #4e5152
}

.z5i.zek .zel>li h4.title {
    color: #444;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 100;
    line-height: 1.2
}

.z5i.zek .zel>li .zdn {
    font-size: 12px
}

.z5i.zek .zdo {
    display: inline-block;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .46);
    color: #fff
}

.z5i.zek .zdo.zdp {
    font-size: 11px;
    padding: 2px 5px;
    background: #67c15e;
    margin-right: 5px
}

.z5i.zek .zck,
.z5i.zek .zdo.zdp .value {
    font-size: 12px
}

.z5i.zek .zck {
    color: #888;
    font-weight: 500;
    line-height: 20px
}

.zel .answer {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 0;
    font-weight: 400 !important;
    max-height: 140px;
    color: #898989
}

.zel .answer ol,
.zel .answer ul {
    padding-left: 14px;
    list-style: outside
}

.zem {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd
}

li.zcd {
    border-bottom: 0 !important;
    margin-bottom: 0 !important
}

li.zcd .zce {
    font-size: 12px;
    display: inline-block;
    padding-bottom: 5px
}

li.zcd .zcf {
    display: block;
    font-size: 11px
}

li.zcd .zcf svg {
    fill: #f6bb43 !important
}

li.zcd .zcg {
    display: inline-block
}

.z5i .zil {
    font-weight: bolder;
    padding: 0;
    margin: 0 0 10px
}

.z23,
.z5i .zim li,
.z5o h3 {
    font-weight: 400
}

.z5i .zim li {
    font-size: 15px;
    line-height: 17px;
    color: #333;
    border-top: 1px solid #ddd;
    padding: 10px 5px
}

.z5i .zim li span {
    float: right
}

.z5i .zim li div {
    display: inline
}

.z23 {
    background: #fff;
    outline: 0;
    display: inline-block;
    padding: 13px 15px;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1rem;
    border-radius: 2px;
    transition: all .3s ease-out;
    border: none
}

.z2q {
    display: block;
    width: 100%
}

.z2r {
    border-radius: 50%
}

.z2s {
    width: 40px;
    height: 40px;
    padding: 0
}

.z2t,
.z2u {
    background: #027cd5;
    color: #fff
}

.z2v {
    background: #F44336;
    color: #fff
}

.z2w {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2)
}

.z2w:hover {
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .14), 0 1px 7px 0 rgba(0, 0, 0, .12), 0 3px 1px -1px rgba(0, 0, 0, .2)
}

.zfq {
    padding: 6px
}

.zfs {
    background: #000
}

.zfr {
    background: #3b5999
}

.zfu {
    background: #247cd5
}

.zh3 {
    padding: 4px;
    background: #C6232C
}

.zft,
.zot,
.zou {
    padding: 7px
}

.zft {
    background: linear-gradient(to bottom, #E4405F, #662D91)
}

.zot {
    background: #b92b27
}

.zou {
    background: #000
}

.z2k,
.zd3,
.zha {
    padding: 10px 15px
}

.zd2,
.zp0 {
    background: #fff
}

.zp0 {
    color: #eee
}

.z23.z20,
.z23:disabled {
    box-shadow: none;
    cursor: not-allowed;
    filter: grayscale(1)
}

.z5p.zi .z10,
.zjk .zhf svg,
.zjk .zjh svg {
    cursor: pointer
}

.z2x {
    opacity: 0
}

.z2x.in {
    opacity: 1;
    visibility: visible
}

.z23 svg {
    vertical-align: middle
}

.zd2 {
    display: inline-block;
    font-size: 1rem;
    box-shadow: 1px 3px 7px rgba(0, 0, 0, .25);
    border: 1px solid #D9D9D9;
    border-radius: 12px
}

.z2k,
.zh9 {
    display: block
}

.zha {
    border-bottom: 1px solid #ddd
}

.z2i {
    margin-bottom: 15px;
    text-align: left
}

.z2n,
.z3r span.z3t,
.z5p.zh span {
    text-align: center
}

.z2i.z2j {
    margin-bottom: 25px
}

.z2i:last-child {
    margin-bottom: 0
}

.z2k {
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 2px
}

.z2j .z2k,
.z2l .z2k:invalid {
    border-color: red
}

.z2k:not(textarea) {
    height: 45px
}

.z2m {
    color: #d00;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 48px;
    display: none
}

.z2j .z2m {
    display: initial
}

.z2n .z2o {
    display: none
}

.form .message {
    line-height: 1.2em
}

.z2o,
.z2o:after,
.z2o:before {
    border-radius: 50%;
    animation: loader 1.8s infinite ease-in-out
}

.z2o {
    color: #f6bb43;
    position: relative;
    transform: translateZ(0);
    animation-delay: -.16s;
    top: -1em;
    display: inline-block;
    width: 1.2em;
    height: 1.2em
}

.z2o:before {
    right: 150%;
    animation-delay: -.32s;
    color: #3baeda
}

.z2o:after {
    left: 150%;
    color: #f3804a
}

.z2o:after,
.z2o:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: inherit;
    height: inherit
}

.z5o h3,
.z5p.zh span {
    display: inline-block
}

.z3r,
.z5p.zi,
.z5p.zi .dec_area {
    position: relative
}

@keyframes loader {

    0%,
    100% {
        box-shadow: 0 1.2em 0 -1em
    }

    50% {
        box-shadow: 0 1.2em 0 -.2em
    }
}

.z5o.exclusive {
    border-left: 5px solid #679F42
}

.z5o.exclusive:hover {
    box-shadow: -4px 4px 8px 0 #96BD7C
}

.z5o {
    background: #fff;
    border: 1px solid #ddd;
    margin-top: 16px;
    -webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, .2);
    -moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, .2);
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, .2);
    padding: 15px 15px 0;
    transition: all .2s ease-in-out
}

.z5o:hover {
    transform: scale(1.002);
    box-shadow: 1px 2px 10px 2px #9e9e9e
}

.z5o h3 {
    font-size: 20px;
    line-height: 24px;
    color: #2E2E2E;
    margin: 0;
    text-transform: capitalize
}

.z5p.zh,
.z5p.zh span,
.z5p.zi .zlm .zln {
    text-transform: uppercase
}

.z5o h3 .bold {
    font-weight: 700;
    font-size: 23px
}

.z5o a.z12 {
    color: #3baeda;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #eee
}

.z5p {
    box-sizing: border-box
}

.z5p.zh {
    float: left;
    width: 114px;
    margin-right: 15px;
    align-self: start;
    margin-top: 12px
}

.news .zb9,
.zdd {
    float: right;
    text-decoration: none
}

.z5p.zh span {
    width: 100%;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 26px;
    line-height: 35px;
    word-break: break-word
}

.z5p.zh span .bold {
    font-weight: 700;
    font-size: 35px;
    line-height: 38px;
    display: block
}

.z5p.zi {
    color: #898989;
    width: 795px;
    margin-bottom: 10px
}

.z5p.zi .zlm {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.z5p.zi .zlm .zln {
    font-weight: 700;
    font-size: 19px;
    line-height: 23px
}

.z5p.zi .zlo {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: start
}

.z5p.zi .zlp {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: row;
    gap: 10px
}

.z5p.zi .zlp .icon-chat-bubble {
    fill: #027cd5
}

.z5p.zi h3 {
    padding-bottom: 5px;
    padding-right: 5px
}

.z5p.zi p {
    margin: 0
}

.z5p.zi .dec_area ul {
    padding-left: 16px;
    margin: 0
}

.z5p.zi .dec_area td,
.z5p.zi .dec_area th {
    padding: 3px;
    border-width: 2px
}

.z5p.zi .dec_area .zlq {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #2E2E2E;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd
}

.z5p.zi .z10 {
    background: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    z-index: 0
}

.z5p.zi .z10::after {
    content: "";
    background: -webkit-linear-gradient(to right, rgba(255, 255, 255, .45), rgba(255, 255, 255, .99));
    background: -moz-linear-gradient(to right, rgba(255, 255, 255, .45), rgba(255, 255, 255, .99));
    background: -o-linear-gradient(to right, rgba(255, 255, 255, .45), rgba(255, 255, 255, .99));
    background: linear-gradient(to right, rgba(255, 255, 255, .45), rgba(255, 255, 255, .99))
}

.z5p.zi h2 {
    margin-bottom: 0;
    font-size: 23px;
    text-transform: capitalize;
    font-weight: 600;
    display: inline-block;
    width: 100%
}

.z5p.zi span.z5q {
    margin-left: 20px
}

.z5p.zi .zdm {
    margin-top: 24px
}

.z5p.zi .zdm .z5w {
    color: #027CD5;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px
}

.z3r,
.z3r .z3o,
.z3r .z3p {
    border-radius: 4px;
    width: 100%;
    color: #fff;
    height: 40px
}

.z3r {
    max-width: 263px;
    font-weight: 500;
    font-size: 18px;
    margin: 0
}

.z3r .z3u,
.z3r span {
    display: inline-block;
    line-height: normal
}

.z3r span.z3s {
    position: absolute;
    inset-inline-end: 30px;
    line-height: 42px;
    font-size: 18px;
    filter: blur(3px)
}

.z3r span.z3t {
    filter: none;
    position: relative;
    display: block;
    inset-inline-end: 0
}

.z3r .z3o,
.z3r .z3p {
    font-size: 18px;
    font-weight: 600;
    padding: 0 5px;
    line-height: 42px;
    -webkit-transition-duration: .5s;
    transition-property: width;
    transition-duration: .5s;
    overflow: hidden;
    text-align: center;
    text-transform: uppercase;
    border-block-end: 0 !important
}

.dec_area,
.z5t {
    font-weight: 400;
    font-style: normal
}

.z5r .userType,
.z5r .z5s {
    text-transform: capitalize
}

.z3r .z3p {
    height: 40px
}

.z3r:hover .z3o {
    width: 90%
}

.dec_area {
    margin-top: 10px;
    display: none;
    font-size: 15px;
    line-height: 24px;
    color: #333
}

.z5t,
.z61 {
    display: flex
}

.z5r .z5s,
.z5t {
    font-size: 14px
}

.dec_area table {
    margin-block-start: 5px;
    margin-block-end: 10px
}

.dec_area table tr {
    text-align: justify
}

.z5r {
    margin-block-start: 2%
}

.z5r .userType svg {
    margin-inline-end: 2px;
    fill: #8a8a8a
}

.z5r .z5s {
    margin-inline-end: 2%
}

.z5t {
    width: 263px;
    line-height: 20px;
    color: #2E2E2E;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
    align-items: center
}

.z5v.zlr,
.zjk {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #2E2E2E
}

.z5t .z40 .z5u {
    fill: #2E2E2E
}

.z5t span,
.z5t svg {
    fill: #2E2E2E;
    font-size: 14px
}

.zjk {
    align-items: center;
    justify-content: end;
    padding: 3px 5px;
    position: absolute;
    top: 0;
    right: 0
}

.zjk .zhf {
    padding: 5px 1px 5px 5px
}

.zjk .zjh svg {
    transform: scaleX(-1)
}

.zjk .zhf svg.z47,
.zjk .zjh svg.z47 {
    fill: #027cd5
}

.zjk .zhf svg.z20,
.zjk .zjh svg.z20 {
    cursor: not-allowed
}

.z5v {
    word-break: keep-all
}

.z5v.z5w {
    margin-inline-end: 10px
}

.z5v.zlr {
    font-style: normal
}

.z61 {
    border: 3px solid #506D3D;
    overflow: initial;
    position: relative;
    background-color: #F8FCFE;
    flex-wrap: nowrap;
    flex-direction: row
}

.z61 .z5p.zh .value {
    color: #506D3D
}

.z61 .z5p.zi h5 {
    font-style: normal;
    font-weight: 700;
    font-size: 19px;
    line-height: 23px;
    text-transform: uppercase;
    color: #506D3D
}

.z48,
.zen .z1c .znz {
    text-transform: capitalize
}

.z61 .z5p.zi .zdm {
    margin: 0;
    align-self: center
}

.z61 .z5p.zi .zdm a {
    outline: 0
}

.z61 .z5p.zi .zlp {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    gap: 10px
}

.z61 .z3o,
.z61 .z3p,
.z61 .z3r {
    background: #506D3D
}

.z48 {
    border-top: 1px solid #ddd;
    clear: both
}

.z48 ul {
    max-height: 150px;
    overflow: hidden;
    overflow-y: auto;
    z-index: 1;
    margin-bottom: 5px;
    margin-top: 10px
}

.z48.zhh ul {
    max-height: 400px
}

.z48 li {
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 17px;
    color: #333
}

.z48 li:last-child {
    border-bottom: 0
}

.z48 li input {
    display: none
}

.z48 li input[type=checkbox]:checked+label:before {
    content: "\2713";
    font-size: 15px;
    color: #333;
    text-align: center;
    line-height: 15px
}

.comment::after,
.z3h::after,
.z48 li label:before,
.zb::after,
.zik li h4.title::after {
    content: ""
}

.z48 li label {
    line-height: 25px;
    padding-left: 25px;
    display: block;
    position: relative;
    font-weight: 500;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all .25s linear;
    font-size: 14px;
    letter-spacing: .4px;
    color: #333
}

.z48 li label:before {
    display: inline-block;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0;
    top: 3px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px
}

.zen ul {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll
}

.zen ul::-webkit-scrollbar {
    display: none
}

.zen li {
    display: inline-block;
    max-width: 22%;
    margin-right: 1%;
    min-width: 290px
}

.zen .z1c {
    margin-bottom: 10px;
    background: #FFF;
    box-shadow: 2px 2px 6px rgba(58, 58, 58, .25);
    border-radius: 14px;
    overflow: hidden
}

.z8i,
.zdl,
.zhx {
    white-space: nowrap
}

.zen .z1c .zls {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px;
    gap: 8px;
    height: 100px;
    position: relative
}

.zen .z1c .zls:hover {
    background-color: rgba(105, 105, 105, .8);
    padding: 0
}

.zen .z1c .zls:hover .znx {
    opacity: 1;
    display: block;
    position: absolute;
    inset: initial;
    padding: 8px;
    width: inherit
}

.z6l,
.zen .z1c .zls:hover .zlt {
    opacity: 0
}

.zen .z1c .zls:hover .zny {
    display: none
}

.zen .z1c .znz,
.zen .z1c .zo0 {
    font-style: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1
}

.zen .z1c .zny>:not(:last-child) {
    margin-bottom: 4px
}

.zen .z1c .zlt {
    width: 33%;
    height: auto
}

.zen .z1c .znz {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #b1aea9;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.zen .z1c .znz>svg {
    fill: #b1aea9;
    vertical-align: text-top
}

.zdo.zcf svg,
.ze5,
.zen .z1c .zo1 span>svg.zo3 {
    vertical-align: middle
}

.zen .z1c .zo0 {
    font-weight: 700;
    font-size: 21px;
    line-height: 23px;
    color: #2E2E2E;
    text-transform: uppercase;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.zen .z1c .znx,
.zen .z1c .zo1 span {
    font-size: 14px;
    line-height: 18px;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-style: normal
}

.zen .z1c .zo1 {
    display: flex;
    flex-direction: row;
    gap: 2px
}

.zen .z1c .zo1 .zo2 {
    color: #2e2e2e
}

.zen .z1c .zo1 span {
    font-weight: 500;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1
}

.zen .z1c .znx,
.zen .z1c .zo1 span.value {
    font-weight: 700
}

.z17,
.zdc,
.zdl,
.zen .z1c .znx,
.zhx {
    text-transform: uppercase
}

.zen .z1c .zo1 span>svg.zo3 {
    fill: #00d566;
    color: #00d566
}

.zen .z1c .znx {
    color: #fff;
    text-align: center;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    display: none
}

.zdi,
.zhu {
    background: #fff;
    margin: 16px 0;
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, .2);
    padding: 5px 10px 5px 0;
    display: table;
    width: 100%;
    cursor: pointer
}

.zdi.zeo,
.zhu.zeo {
    border-left: 4px solid #fe7c60
}

.zdk,
.zdl,
.zep,
.zhw,
.zhx,
.zhy {
    display: table-cell;
    vertical-align: middle
}

.zdk,
.zhw {
    padding-left: 10px
}

.zdk:last-child,
.zhw:last-child {
    text-align: right
}

.z2y,
.z2y .z2z {
    text-align: center
}

.zdk p,
.zhw p {
    color: #00f;
    font-weight: 500;
    font-size: 20px
}

.zep,
.zhy {
    width: 140px;
    border-right: 1px dashed #ddd
}

.zep img,
.zhy img {
    width: 100%;
    display: block
}

.zdl,
.zhx {
    display: inline-block;
    padding: 10px 15px;
    background: #fe7c60;
    color: #fff;
    box-sizing: border-box;
    border-radius: 3px;
    font-weight: 700;
    letter-spacing: .4px;
    transition: all .3s ease-in-out
}

.zdl:hover,
.zhx:hover {
    box-shadow: 0 14px 26px -12px rgba(244, 67, 54, .42), 0 4px 23px 0 rgba(0, 0, 0, .12), 0 8px 10px -5px rgba(244, 67, 54, .2)
}

.z6l {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    box-shadow: 0 6px 20px 1px rgba(0, 0, 0, .5);
    z-index: 100;
    border: 1px solid #2793e6;
    background: #2793e6;
    transition: opacity .3s ease-in-out;
    will-change: opacity
}

.z2y,
.z8h {
    position: relative
}

.z90 .z91,
.zgd {
    border-radius: 10px
}

.z6l svg {
    fill: #fff
}

.z6l.in {
    opacity: 1
}

.z6l.z6m {
    display: inline-block
}

body,
html {
    scroll-behavior: smooth
}

#modal_login .zt {
    display: inline-flex
}

.z2y .z2z {
    color: #555;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    display: inline-block;
    width: 30%
}

.z33 a,
.z8i {
    display: block
}

.z30 {
    width: 350px;
    min-height: 450px;
    padding: 20px;
    color: #fff;
    background: bottom left no-repeat #013d62
}

.z30 h3 {
    color: #f6bb43;
    font-size: 28px
}

.z30 ul {
    padding: 25px
}

.z30 ul li {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 18px
}

.z2y {
    margin-top: 25px;
    padding: 20px;
    width: 550px;
    color: #a9a9b6
}

.z2y .z20 {
    background: #948f8c
}

.z2y .z31 {
    font-size: 20px
}

.z2y .z2z {
    margin-top: 12px
}

.z2y .z2z a {
    text-decoration: none;
    cursor: pointer
}

.z32 {
    margin-bottom: 10px
}

.z33 a {
    font-size: 14px;
    font-weight: 400;
    color: #959595;
    text-decoration: none;
    width: 359px;
    text-align: right;
    margin: 0 auto 19px
}

.z90,
.zg5>.zg6 {
    text-align: center
}

#loginForm,
#passwordResetForm,
#signupForm {
    max-width: 350px
}

.z8k,
.z90 {
    position: absolute
}

.zgd {
    overflow: hidden
}

.z8i {
    will-change: transform;
    transition: all .3s ease;
    font-size: 0
}

.z8i>.z8j,
.z90 .z91 {
    display: inline-block
}

.z8i>.z8j {
    white-space: normal;
    font-size: 1rem
}

.z17,
.zde {
    white-space: nowrap
}

.z8i>.z8z img {
    width: 100% !important;
    height: 100% !important
}

.z8k {
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden
}

.z8k.z8l {
    left: 0
}

.z8k.z8m {
    right: 0
}

.z8k.in {
    opacity: 1;
    visibility: visible
}

.z90 {
    padding-top: 10px;
    width: 100%;
    top: 100%
}

.z90 .z91 {
    width: 10px;
    height: 10px;
    border: .75px solid #515151;
    transition: background .3s ease-in;
    margin: 3px
}

.z90 .z91.z2a {
    background: #515151
}

.zg4 {
    margin: 40px 0 10px
}

.zg5 {
    display: flex
}

.zg5>.zg6 {
    padding: 16px 30px;
    display: inline-block;
    cursor: pointer;
    transition: all .3s ease-in-out;
    background: #fff;
    flex: 1;
    border-radius: 3px 3px 0 0
}

.z5i.zez,
.zey .zig.zih {
    transition: .2s all ease
}

.zg5>.zg6.z2a,
.zg5>.zg6:hover {
    background: #3193e6;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, .1);
    color: #fff
}

.zg7 {
    background: #fff;
    padding: 15px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .1);
    border-top: 2px solid #03A9F4
}

.zg7>.zg8 {
    display: none
}

.zg7>.zg8.z2a {
    display: block
}

.zgs {
    margin-bottom: 20px
}

.zgs img {
    height: 150px;
    width: 100%
}

.zgs .z8j {
    width: calc((100%)/ 3);
    overflow: hidden;
    position: relative
}

.z17,
.zgs .za7 {
    width: 100%;
    text-align: center;
    cursor: pointer
}

.zgs .za7 {
    position: absolute;
    z-index: 1;
    height: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    font-size: 25px;
    line-height: 150px
}

.zgs .z8k.z8m {
    right: -15px
}

.zgs .z8k.z8l {
    left: -15px
}

.zh4 .stars {
    display: inline-flex;
    flex-direction: row-reverse
}

.zh4 p {
    color: #555;
    font-size: 1.05em
}

.zh4 label {
    display: inline-block;
    padding: 5px;
    cursor: pointer
}

.zh4 input[type=radio] {
    display: none
}

.zh4 .icon-star-full {
    fill: #ddd
}

.zh4 input[type=radio]:checked~label>svg {
    fill: #FFC107
}

.zdo.zcf svg,
.zh4 label:hover>svg,
.zh4 label:hover~label>svg {
    fill: #f6bb43
}

#write_review {
    margin: 20px 0
}

#write_review .form {
    padding: 0 25px
}

#write_review .zh8 {
    margin-bottom: 15px
}

#write_review .z2m {
    position: relative;
    top: 3px
}

#write_review .zh4 {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.z17,
.zev p span {
    font-weight: 500;
    display: block
}

#write_review legend {
    font-size: 1.3em;
    text-align: center
}

#write_review .message {
    color: #555;
    text-align: center
}

.zev {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px
}

.zev p {
    font-size: 14px;
    color: #444;
    margin-top: 0;
    text-align: center;
    line-height: 20px;
    margin-bottom: 5px
}

.zev p span {
    font-size: 17px;
    color: #00f
}

.z17 {
    padding: 5px 10px;
    border-radius: 3px;
    border: 2px solid #027cd5;
    color: #fff;
    background-color: #027cd5;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 0 4px rgba(0, 0, 0, .65)
}

.zew {
    text-align: left;
    padding: 10px 20px;
    background: #cdcdd0
}

.zew .zex {
    color: #2e2e2e;
    font-size: 20px;
    font-weight: 600
}

.zey {
    -webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, .2);
    -moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, .2);
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, .2)
}

.z5i.zez {
    will-change: background;
    background: 0 0;
    border: none;
    border-bottom: 1px dashed #ddd;
    margin: 0;
    box-shadow: none
}

.z5i.zez .zf0,
.z5i.zez a {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    cursor: pointer
}

.zdc,
.zde li {
    display: inline-block
}

.z5i.zez .zf1 {
    overflow: hidden
}

.z5i.zez .title {
    color: #027cd5;
    font-size: 14px;
    line-height: 15px;
    font-weight: 500;
    text-align: center
}

.z5i.zez .zif {
    margin-left: 10px
}

.z5i.zez .zif span {
    font-size: 14px
}

.z5i.zez img {
    width: 48px;
    border-radius: 15px
}

.z5i.zez .z1i:hover .z3o,
.zhk img {
    width: 100%
}

.z5i.zez .z3o,
.z5i.zez .z86 {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    clip-path: unset;
    -webkit-clip-path: unset
}

.z5i.zez:hover {
    background: #ddd
}

.z5i.zez:hover a {
    color: #fe3f13
}

.z5i.zez:last-child {
    border-bottom: none
}

.zhk {
    min-width: 70px;
    max-width: 70px;
    margin-right: 10px
}

.zdb {
    background: #fff;
    padding: 15px 15px 0;
    border-radius: 1px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    margin-top: 15px
}

.zdc {
    margin: 0 0 20px;
    font-weight: lighter;
    font-size: 20px;
    color: #556270
}

.zck,
.zcn,
.zco,
.zcp {
    text-transform: capitalize
}

.zdd {
    cursor: pointer
}

.zde {
    font-size: 0;
    overflow: auto
}

.news h3,
.news p,
.zak {
    overflow: hidden
}

.zde li {
    white-space: normal;
    font-size: 16px;
    margin-right: 15px;
    width: 320px
}

.news {
    border: 1px solid #ddd;
    border-radius: 2px;
    margin-bottom: 15px;
    text-decoration: none
}

.news .z40 {
    padding: 10px 10px 0
}

.news img {
    width: 100%;
    display: block;
    height: 140px
}

.zh1,
.zhl {
    width: auto;
    overflow-y: hidden;
    white-space: nowrap
}

.news h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    height: 35px;
    line-height: 17px
}

.news h3 a {
    text-decoration: none;
    color: #555
}

.news p {
    margin: 5px 0;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: .3px;
    height: 45px;
    color: #777;
    display: none
}

.news p:first-of-type {
    display: block
}

.news .zcv {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .5px;
    padding: 4px 0 8px
}

.news .zb9 {
    cursor: pointer
}

.zak {
    position: relative
}

.zf2 {
    display: inline-flex;
    flex-wrap: wrap
}

.zf2::-webkit-scrollbar {
    display: none
}

.zh1 {
    display: block;
    padding: 0 0 0 10px;
    overflow-x: scroll;
    margin-bottom: 30px
}

.zh1 .value,
.zh1 .z3q {
    font-weight: 700;
    overflow: hidden
}

.zh1 .zh2 {
    margin-right: 1em;
    max-width: 200px;
    padding: 0
}

.zh1 .z3q {
    height: 50px;
    line-height: 20px;
    padding: 6px 5px;
    font-size: 14px;
    color: #fff
}

.zh1 .value {
    line-height: 40px;
    height: 40px;
    font-size: 20px;
    display: inline-block;
    padding: 3px 5px
}

.zhl {
    overflow-x: scroll
}

.list .answer,
.question.title,
.title,
.zgc,
.zhm article .title {
    overflow: hidden
}

.zhm li.zd2 {
    flex: 1 0 200px;
    margin: 0 15px 5px 0;
    min-width: 180px;
    max-width: 220px;
    cursor: pointer
}

.zhm li.zd2:hover {
    transform: scale(1.002);
    box-shadow: 2px 2px 10px 2px #9e9e9e
}

.zhm .zhn {
    width: 100%;
    height: 120px;
    display: inline-block;
    object-fit: none
}

.zhm article {
    background-color: #55aced;
    height: 67px;
    border: 1px solid #55aced;
    box-shadow: 0 -4px 3px rgba(50, 50, 50, .75);
    color: #fff;
    padding-top: 5px
}

.zhm article .title {
    text-align: center;
    max-height: 48px;
    font-size: 14px;
    line-height: 16px;
    margin-top: 12px;
    padding-left: 10px
}

.zey {
    margin-top: 15px;
    background: #e6e6e6
}

.zey .zig.zih {
    background: 0 0;
    border: none;
    margin: 0;
    box-shadow: none
}

.zey .zig.zih:not(:last-child) {
    border-bottom: 1px dashed #ddd
}

.zey .zig.zih .zgz,
.zey .zig.zih a {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    font-size: 14px;
    line-height: 16px
}

.zey .zig.zih .zgz .zf1,
.zey .zig.zih a .zf1 {
    margin-top: 10px;
    display: inline-block;
    object-fit: none;
    margin-left: 15px
}

.zey .zig.zih .zgz div,
.zey .zig.zih a div {
    display: flex
}

.zey .zig.zih .zgz div .zii,
.zey .zig.zih a div .zii {
    margin: 10px 0 15px 10px;
    height: 35px;
    padding: 5px;
    width: 80%
}

.zey .zig.zih .zgz div .zif,
.zey .zig.zih a div .zif {
    position: absolute;
    top: 40px;
    right: 10px;
    color: #2e2e2e;
    font-size: 15px
}

.zey .zig.zih .zgz div .zif svg,
.zey .zig.zih a div .zif svg {
    margin-bottom: 5px
}

.zey .zig.zih:hover {
    background: #ddd
}

.zey .zig.zih:hover a {
    color: #d61002
}

.zjl {
    border: none;
    margin: 16px 0;
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, .2);
    padding: 15px;
    background-color: #fff
}

.store,
.zfd {
    border-top: 1px solid #ddd
}

.zfd,
.zik li .zgb {
    border-bottom: 1px solid #ddd
}

@media screen and (max-width:768px) {
    .review>.zo {
        padding: 0 10px
    }
}

.zb::after {
    display: table
}

.zb9,
.zdo,
.zdo.zcf svg {
    display: inline-block
}

.panel-body {
    padding: 10px 15px;
    margin: 10px 0 20px;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, .5)
}

.zdo.zdp,
.zdo.ze4 {
    background: #67c15e;
    float: right
}

.zdq {
    cursor: pointer
}

.zb9 {
    color: #037cd5;
    margin-top: 5px;
    cursor: pointer
}

.service {
    margin: 8px 0
}

.service .type,
.service .z40 {
    font-size: 13px;
    color: #888;
    letter-spacing: .5px;
    text-transform: capitalize;
    display: inline-block
}

.service .z40 {
    font-weight: 600;
    border-radius: 2px
}

.title {
    font-weight: 100;
    margin: 0;
    line-height: normal
}

.title.ze3 {
    margin: 10px 0
}

.title a {
    text-decoration: none
}

.zdo {
    border-radius: 3px;
    box-shadow: 0 0 2px rgba(0, 0, 0, .2);
    color: #fff
}

.zdo.ze4 {
    padding: 5px 13px;
    font-size: 13px;
    letter-spacing: 2px;
    margin-top: 0
}

.zdo.ze4 .value {
    font-size: 18px;
    line-height: 19px
}

.zdo.zdp {
    font-size: 10px;
    padding: 1px 8px
}

.zdo.zdp .value {
    font-size: 12px
}

.zdo.zcf {
    box-shadow: none
}

.zdo.zcf span.zc7,
.zdo.zcf span.zcg {
    color: #777;
    font-size: 14px;
    font-weight: 400
}

.zcn,
.zco {
    color: #888;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .5px
}

.z1h .z7q,
.zcn>span,
.zco>span,
.zcp span {
    font-weight: 600
}

.list .answer,
.list .answer ul li {
    color: #555;
    letter-spacing: .3px;
    word-spacing: 1px
}

.question.title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: -10px;
    margin-top: 16px
}

.list {
    margin-bottom: 20px
}

.list .answer {
    line-height: 25px;
    margin-top: 15px
}

.list .answer ul {
    padding-left: 20px;
    list-style-type: initial
}

.answer p {
    margin: 0
}

.answer p:empty {
    display: none
}

.store a,
.z1h>a {
    display: inline-block
}

.store a {
    height: 30px
}

.store .zdn {
    float: right;
    text-decoration: none;
    margin-top: 12px
}

.zcp {
    font-size: 13px;
    letter-spacing: .6px;
    color: #888;
    margin: 5px 0
}

.zcp a {
    text-decoration: none
}

.ze5 {
    fill: #F44336
}

.z1h {
    float: left;
    padding: 5px
}

.z1h>a {
    margin: 0 5px;
    text-align: center;
    text-decoration: none
}

.z1h>a svg {
    fill: #9e9e9e;
    margin: 0 auto;
    display: block
}

.z1h .z7q {
    color: #777;
    font-size: 12px
}

.ze6 {
    transform: rotateX(180deg)
}

.ze6.z47,
.ze7.z47 {
    fill: #027cd5
}

.ze6.z20,
.ze7.z20 {
    cursor: not-allowed
}

.ze0 {
    fill: #a4a4a4
}

.zgb {
    display: flex;
    align-items: center
}

.zgb .zfa {
    min-width: 50px;
    margin-right: 10px;
    width: 50px;
    height: 50px
}

.zgc {
    white-space: nowrap
}

.zck:last-child {
    color: #2196F3 !important
}

.zek .zcp {
    display: inline-block;
    margin: 7px 0;
    font-size: 14px;
    color: #888993
}

.zf9,
.zfd,
.zfe {
    display: flex
}

.zck {
    color: #555
}

.zck>span {
    font-weight: 700
}

.zfa {
    width: 60px;
    height: 60px;
    border-radius: 30px
}

.zf9 {
    justify-content: flex-start;
    align-items: center
}

.zf9 .zfa {
    margin-right: 15px
}

.zf9 .zck {
    font-size: 20px
}

.zf9 .zf:nth-child(2) {
    flex-grow: 1
}

.zfd {
    justify-content: space-between;
    padding: 15px 0;
    margin: 15px 0
}

#write_review,
.zik {
    margin-bottom: 20px
}

.zfe {
    background: #f4f4f4;
    border-radius: 3px;
    align-items: center
}

span.zc7,
span.zff {
    display: inline-block;
    text-align: center;
    vertical-align: middle
}

span.zff {
    background: #49c6ff;
    color: #fff;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    height: 35px;
    width: 35px;
    padding: 12px 5px
}

span.zc7 {
    font-size: 13px;
    width: 100%;
    max-width: 100px;
    padding: 0 10px;
    line-height: 14px;
    text-transform: uppercase;
    color: #555;
    letter-spacing: .5px
}

.z3a p,
.z3a ul li a,
.zik .zck,
.zik li h4.title {
    text-transform: capitalize
}

.offer.panel-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px
}

.offer.panel-body>span {
    flex: 1;
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid #ddd;
    line-height: 30px
}

.offer.panel-body>.z23 {
    padding: 8px 16px;
    font-size: 14px
}

#write_review {
    display: none
}

#write_review:target {
    display: block
}

.zik h3 {
    margin: 0 0 10px;
    font-weight: 400
}

.zik h3 .zdm {
    float: right;
    font-size: 14px
}

.zik ul {
    padding: 2px 1px;
    margin: 0;
    white-space: nowrap;
    overflow-x: auto
}

.zik li .answer,
.zik li h4.title {
    margin-top: 10px;
    font-family: Calibri, sans-serif
}

.zik .zck,
.zik li h4.title {
    overflow: hidden;
    white-space: nowrap
}

.zik li {
    list-style-type: none;
    margin-bottom: 10px;
    padding: 10px !important;
    background: #fff;
    border-radius: 2px;
    display: inline-block;
    width: 40%;
    min-width: 220px;
    margin-right: 5px;
    box-sizing: border-box;
    white-space: normal;
    box-shadow: 0 0 2px rgba(0, 0, 0, .3)
}

.zik li .zgb {
    padding-bottom: 10px
}

.zik li:last-of-type {
    border-bottom: 0;
    margin-right: 0
}

.zik li svg {
    fill: #4e5152
}

.zik li h4.title {
    color: #444;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
    height: 20px;
    text-overflow: clip;
    position: relative
}

.zik li h4.title::after {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, .36), rgba(255, 255, 255, .99));
    background: -o-linear-gradient(left, rgba(255, 255, 255, .36), rgba(255, 255, 255, .99));
    background: -moz-linear-gradient(left, rgba(255, 255, 255, .36), rgba(255, 255, 255, .99));
    background: linear-gradient(left, rgba(255, 255, 255, .36), rgba(255, 255, 255, .99))
}

.z3h,
.zik li .answer,
.zik li .zdn {
    position: relative
}

.zik li p:empty {
    display: none
}

.zik li .answer {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: .5px;
    height: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #555
}

.zik li .zdn {
    font-size: 13px;
    padding: 0 5px 0 30px;
    margin-top: -14px;
    float: right;
    z-index: 5;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, .58), #fff 35%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, .58), #fff 35%);
    background: -moz-linear-gradient(left, rgba(255, 255, 255, .58), #fff 35%);
    background: linear-gradient(left, rgba(255, 255, 255, .58), #fff 35%);
    margin-right: -3px
}

.zik .answer p {
    font-size: 13px;
    font-weight: 400
}

.zik .zdo {
    display: inline-block;
    border-radius: 3px;
    color: #fff
}

.zik .zdo.zdp {
    font-size: 10px;
    padding: 1px 5px;
    background: #67c15e;
    margin-right: 5px;
    margin-top: 5px;
    float: left
}

.zik .zdo.zdp .value {
    font-size: 11px
}

.zik .zck {
    color: #888;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    height: 20px;
    display: block;
    text-overflow: clip
}

.z37,
.z37 .zo,
.z3a .zn5,
.z3a .zn6 {
    display: flex
}

.zik .zdq {
    color: #00e
}

.about_store,
.accordion-body {
    color: #454545;
    font-family: Calibri, sans-serif
}

.about_store a,
.accordion-body a {
    text-decoration: none
}

.about_store h2,
.accordion-body h2 {
    margin: 15px 0
}

.about_store h3,
.accordion-body h3 {
    font-weight: 400;
    line-height: 30px;
    text-transform: capitalize;
    margin: 20px 0;
    background: #9e9e9e;
    padding: 10px 15px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    box-sizing: border-box;
    color: #fff;
    border-radius: 0 2px 2px 0
}

.z37 h3,
.z3a p,
.z3a ul li a {
    font-weight: 600
}

.about_store .table-container,
.accordion-body .table-container {
    overflow-x: auto;
    background: #fff;
    padding: 10px
}

.about_store table,
.accordion-body table {
    border: none;
    min-width: 100%
}

.about_store td,
.about_store th,
.about_store tr,
.accordion-body td,
.accordion-body th,
.accordion-body tr {
    border: 1px solid #eee;
    padding: 10px;
    font-size: 14px;
    letter-spacing: .5px
}

.about_store thead tr,
.about_store tr:hover,
.accordion-body thead tr,
.accordion-body tr:hover {
    background: #fe7c60;
    color: #fff
}

.about_store tr,
.accordion-body tr {
    background: #fff;
    color: #555;
    transition: all .1s ease
}

.about_store .z68,
.about_store>p,
.accordion-body .z68,
.accordion-body>p {
    font-size: 15px;
    line-height: 25px;
    margin: 20px 0;
    background: #fff;
    padding: 10px 15px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .1);
    box-sizing: border-box;
    border-left: 2px solid #fe7c60;
    border-radius: 0 2px 2px 0
}

.about_store li,
.accordion-body li {
    padding: 5px 0;
    line-height: 25px;
    word-spacing: 1px
}

.about_store li li,
.accordion-body li li {
    list-style-type: decimal;
    margin-left: 20px
}

.about_store>ol.z69>li,
.about_store>ol:not(.z69),
.about_store>ul.z69>li,
.about_store>ul:not(.z69),
.accordion-body>ol.z69>li,
.accordion-body>ol:not(.z69),
.accordion-body>ul.z69>li,
.accordion-body>ul:not(.z69) {
    list-style-type: initial;
    font-size: 15px;
    line-height: 25px;
    margin: 20px 0;
    background: #fff;
    padding: 10px 10px 10px 30px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    border-radius: 2px
}

.about_store>ol.z69,
.about_store>ul.z69,
.accordion-body>ol.z69,
.accordion-body>ul.z69,
.comment {
    list-style-type: none
}

.about_store .list,
.accordion-body .list {
    list-style: outside;
    padding-left: 15px
}

.about_store img,
.accordion-body img {
    max-width: 100%
}

.about_store .zj,
.accordion-body .zj {
    text-align: center
}

.about_store p,
.about_store span,
.about_store td,
.about_store th,
.accordion-body p,
.accordion-body span,
.accordion-body td,
.accordion-body th {
    font-size: 15px !important
}

.about_store h1,
.accordion-body h1 {
    font-size: 26px !important
}

.about_store h2,
.accordion-body h2 {
    font-size: 22px !important
}

.about_store h3,
.accordion-body h3 {
    font-size: 20px !important
}

.about_store h4,
.accordion-body h4 {
    font-size: 15px !important
}

footer {
    background: #E1E1E1
}

footer #z1x>a>svg {
    fill: #027cd5
}

.zn9 svg,
h3.accordion-heading svg {
    fill: #fff
}

.z38 p {
    text-align: center;
    color: #000;
    margin-top: 28px;
    font-size: 11px
}

.z38 .zo {
    margin-top: 30px;
    padding-bottom: 0 !important
}

.z38 .zo:after {
    height: auto
}

.z37 {
    padding-top: 50px;
    padding-bottom: 15px;
    flex-direction: column
}

.z37 h3 {
    color: #000;
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 29px
}

.z37 .zo {
    padding-bottom: 40px;
    justify-content: space-around;
    gap: 16px
}

.z3a {
    flex-basis: 200px;
    flex-grow: 1
}

.z3a:last-child,
.z3a:nth-child(1) {
    flex-basis: 200px
}

.z3a .z3b {
    font-size: 14px;
    color: #fff;
    padding-right: 30px
}

.z3a.z3c {
    padding-left: 50px
}

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

.z3a ul li {
    margin-bottom: 8px
}

.z3a ul li a {
    color: #414141;
    text-decoration: none;
    font-style: normal;
    font-size: 15px;
    line-height: 21px
}

.z3a p {
    color: #0E0E0E;
    text-decoration: none;
    font-size: 16px;
    line-height: 22px;
    text-align: left
}

.z3a .zn5 {
    justify-content: space-between;
    gap: 10px;
    height: 100px;
    align-items: center;
    margin-top: 10px
}

.z3a .zn6 {
    flex-direction: column;
    justify-content: space-between;
    gap: 6px
}

.z3a .zn6>a {
    border-radius: 10px
}

.z3a .zn7 img {
    width: 100px;
    height: auto
}

footer input[type=text] {
    display: inline-block;
    border: 0;
    padding: 12px 6px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #9E9E9E;
    background: #fff;
    border-radius: 8px;
    width: 100%
}

footer input[type=text]:focus {
    outline: 0
}

footer input[type=submit] {
    display: inline-block;
    padding: 8px 6px;
    max-width: 100px;
    background: #f6bb43;
    border: 0;
    color: #fff;
    border-radius: 8px;
    width: 25%;
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;
    text-align: center
}

.zq {
    border-bottom: 2px solid #9E9E9E !important
}

.z3d {
    text-align: left
}

.viewMore,
.z3e,
.zn9,
.zpk,
.zpq,
div.zpj {
    text-align: center
}

.z3d p {
    margin: 16px 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
    color: #000
}

.z3d a {
    margin-right: 10px
}

.z3d a.zn8 {
    background: linear-gradient(145deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    display: inline-block;
    height: 30px;
    border-radius: 50%
}

.zn9 a {
    margin: 0 20px
}

.z3e {
    padding-top: 15px
}

.z3e a {
    display: inline-block;
    vertical-align: middle
}

.z3h,
.zna .znb {
    display: flex;
    gap: 10px
}

.z3e a img {
    margin: 0 10px
}

.z3f {
    padding-left: 50px
}

.z3g {
    color: #f6bb43;
    margin-top: 0
}

.zna {
    background: #027cd5;
    padding: 10px 0
}

.zna .znb {
    justify-content: space-between;
    align-items: center
}

.zna .znb p {
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
    color: #fff
}

.z3h {
    border-radius: 8px;
    width: 55%;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 0
}

.z3h::after {
    display: table
}

.z3h #z3i,
.z3h #z3j {
    position: absolute;
    margin: 0;
    color: #fff;
    padding: 5px 10px;
    font-size: 16px;
    bottom: -20px;
    display: inline;
    left: 0;
    letter-spacing: .5px
}

.zi9 .zi5,
.znc {
    margin-top: 20px
}

.zi4 {
    color: #2573b5;
    font-size: 20px
}

.z92 {
    color: #fff
}

.zi9 .zi5 {
    display: flex;
    flex-direction: row;
    justify-content: space-around
}

.zi9 .zi5 .zi6 {
    display: flex;
    width: 38vw;
    flex-direction: column;
    margin-bottom: 0
}

.zi9 .zi5 .zi6 a {
    font-size: 25px
}

.zi9 .zi5 .zi7 {
    display: flex;
    width: 40vw;
    flex-direction: row-reverse;
    margin-bottom: 0
}

.znd {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 4px;
    border-radius: 4px
}

.accordion-body,
h3.accordion-heading {
    border-radius: 0 2px 2px 0;
    box-sizing: border-box
}

.znd img {
    width: 26px;
    height: 26px;
    object-fit: contain
}

@media (max-width:1170px) and (min-width:200px) {

    .zo,
    .zy {
        width: 100%
    }

    .zo {
        padding: 0 20px
    }

    .z39 {
        padding-top: 15px
    }

    .z29>li>a {
        padding: 15px 0;
        font-size: 14px
    }

    .z29 .z2b>ul {
        width: 70%
    }

    .z29 .z2b>ul li {
        width: 50%
    }

    .z29 .z2b>ul .z2c {
        margin-bottom: 20px !important;
        padding-bottom: 20px !important;
        border-bottom: 1px solid #eee !important
    }

    .z29 .z2b>ul li:nth-last-child(-n+1) .z2c {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        border-bottom: 0 !important
    }
}

@media (max-width:768px) and (min-width:480px) {
    .z13 {
        padding: 0 25px
    }

    .z13 .z1c {
        margin-bottom: 15px
    }

    .z13 .z1c h3 {
        font-size: 18px;
        margin-top: 10px;
        line-height: 20px
    }

    .z19 {
        display: none
    }

    .z14 {
        width: auto;
        padding: 0
    }

    .z1b {
        height: auto;
        overflow: hidden;
        padding: 10px
    }

    .z1b input[type=text] {
        width: 70%
    }

    .z1b input[type=submit] {
        width: 25%
    }

    .z1a {
        float: none
    }

    .z16 {
        margin: 10px 0
    }

    .zy {
        width: 100%
    }

    .zy h3 {
        margin-top: 25px;
        margin-bottom: 10px;
        font-size: 22px
    }

    .zv,
    button#zx {
        font-size: 17px
    }

    .zv {
        width: 50%;
        line-height: 15px
    }

    button#zx {
        width: 35%;
        padding: 14px;
        display: inline-block
    }
}

@media (max-width:1000px) and (min-width:480px) {
    header {
        height: auto !important
    }

    header .zo {
        position: relative
    }

    .search .sidebar {
        width: 100%;
        float: none
    }

    footer input[type=text] {
        width: 70%;
        font-size: 16px
    }

    footer input[type=submit] {
        width: 30%;
        font-size: 16px
    }

    .modal-dialog {
        width: initial
    }

    .modal-dialog #z3k {
        display: none
    }

    .modal-dialog .z3l {
        float: none;
        margin: 0 auto;
        display: block
    }
}

@media screen and (max-width:768px) {
    #z1y {
        top: 54px;
        padding: 0 20px
    }

    .z1s,
    .z1s>form {
        position: static
    }

    .z1s>form {
        padding: 0
    }

    .z1s button.z1w {
        display: none;
        background: 0 0
    }

    .z3m+button.z1w {
        display: block;
        z-index: 1100;
        top: 2px;
        right: 19px
    }

    #z1t {
        opacity: 0;
        visibility: hidden;
        transition: width .3s ease-in-out, opacity .3s, visibility .3s;
        position: absolute;
        right: 5px;
        width: 0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, .5);
        z-index: 1001
    }

    #z1t.z3m {
        opacity: 1;
        visibility: visible;
        width: calc(100% - 10px)
    }

    header button.z1u {
        display: initial;
        background: 0 0;
        background-size: 20px;
        margin-left: 10px
    }

    .z3a {
        float: left;
        width: 50%;
        margin-bottom: 30px
    }
}

@media (max-width:1170px) and (min-width:200px) {
    .zf3 img {
        width: 100%
    }
}

@media (max-width:1170px) and (min-width:1000px) {
    .sidebar {
        width: 20%
    }

    .z5e {
        width: 78%
    }

    .z7t ul li {
        width: 49%
    }

    .z5p.zh {
        width: 18% !important;
        max-width: 112px
    }

    .z5p.zi {
        width: 82% !important
    }
}

@media (max-width:1000px) and (min-width:620px) {

    .z5k,
    .z5l {
        float: left
    }

    .sidebar,
    .z5e {
        width: 100%
    }

    .z56 h1 {
        margin-bottom: 0;
        font-size: 20px;
        overflow: hidden
    }

    .z57 {
        top: auto
    }

    .z5p.zh {
        width: 18% !important;
        max-width: 112px
    }

    .z5p.zi {
        width: 79% !important
    }

    .z5p.zi p {
        width: 55% !important
    }

    .z5p.zi h2 {
        font-size: 18px;
        text-transform: uppercase
    }

    .z5k {
        width: 50%
    }

    .z5l {
        width: 33%
    }
}

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

    .zf4 #zf6,
    .zf4 .zf5,
    .zf4 .zf7 {
        width: 100%;
        float: none
    }

    .zf4 #zf6,
    .zf4 .zf5 {
        margin: 10px 0
    }
}

@media screen and (min-width:1000px) {
    .z5i.zek li .answer {
        max-height: 110px;
        min-height: 80px;
        overflow: hidden
    }

    .z5i.zek li .answer::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 35px;
        background: -webkit-linear-gradient(rgba(255, 255, 255, .36), rgba(255, 255, 255, .99));
        background: -o-linear-gradient(rgba(255, 255, 255, .36), rgba(255, 255, 255, .99));
        background: -moz-linear-gradient(rgba(255, 255, 255, .36), rgba(255, 255, 255, .99));
        background: linear-gradient(rgba(255, 255, 255, .36), rgba(255, 255, 255, .99))
    }
}

@media screen and (max-width:1000px) {
    .sidebar .z48 {
        display: none
    }
}

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

    .z3h #z3i,
    .z3h #z3j {
        font-size: 13px;
        bottom: -20px
    }
}

h3.accordion-heading {
    margin: 10px 0;
    font-weight: 400;
    line-height: 30px;
    background: #9e9e9e;
    text-transform: capitalize;
    padding: 10px 15px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center
}

h3.accordion-heading.accordion-close svg {
    transform: rotate(180deg)
}

h3.accordion-heading>p {
    margin: 0;
    padding: 0;
    font-size: 20px !important;
    font-weight: 700;
    line-height: 30px
}

.comment .msg,
.zdz .message {
    font-style: normal;
    font-weight: 400
}

.accordion-body {
    display: none;
    overflow: hidden;
    font-size: 15px;
    line-height: 25px;
    background: #fff;
    color: #454545;
    font-family: Calibri, sans-serif
}

.zn0,
.zn2 {
    display: flex
}

.zn0 {
    align-items: center;
    flex-direction: column;
    padding: 40px 0;
    gap: 10px
}

.zn0>form {
    margin: 10px 0
}

.zn0 p {
    color: #464646
}

.zn2 {
    justify-content: center;
    position: relative;
    height: 50px;
    line-height: 50px;
    font-size: 50px
}

.zn2 label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    cursor: pointer
}

.zn2 label:last-child {
    position: static
}

.zn2 label:nth-child(1) {
    z-index: 5
}

.zn2 label:nth-child(2) {
    z-index: 4
}

.zn2 label:nth-child(3) {
    z-index: 3
}

.zn2 label:nth-child(4) {
    z-index: 2
}

.zn2 label:nth-child(5) {
    z-index: 1
}

.zn2 label input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0
}

.zn2 label .z3u {
    float: left;
    color: transparent
}

.zn2 label:last-child .z3u {
    color: #ddd
}

.zn2:hover label:hover input~.z3u,
.zn2:not(:hover) label input:checked~.z3u {
    color: #f6bb43
}

.zn2 label input:focus:not(:checked)~.z3u:last-child {
    color: #000;
    text-shadow: 0 0 5px #f6bb43
}

.zdz {
    padding: 10px 20px;
    display: none;
    width: 100%;
    background: #F8F7F7;
    border-radius: 9px
}

.zdz .z9e {
    padding: 2px;
    float: right;
    cursor: pointer;
    box-shadow: none;
    border: 0
}

.znn .zno,
.znn .znp .znq {
    box-shadow: 1px 4px 6px 4px rgba(0, 0, 0, .14);
    cursor: pointer
}

.zdz .z9e .znk {
    vertical-align: middle
}

.zdz .comment-msg,
.zdz .person,
.zdz .submit {
    display: inline-block;
    outline: 0;
    border: 0;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 9px;
    box-sizing: border-box;
    background: #FFF;
    height: 40px
}

.zdz .comment-msg {
    width: 90%;
    resize: vertical
}

.zdz .person {
    width: 40%
}

.zdz .submit {
    position: absolute;
    right: 20px;
    width: 10%;
    height: 40px;
    background: #fff;
    color: #027cd5;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
    cursor: pointer;
    margin-bottom: 0
}

.comment,
.comment-reply {
    position: relative
}

.zdz .submit .icon-send {
    vertical-align: text-bottom;
    fill: #027cd5;
    margin-left: 5px
}

.zdz .message {
    font-size: 12px;
    line-height: 30px;
    color: #2E2E2E
}

.comment-list {
    padding-left: 0;
    margin-top: 0
}

.expand-reply-list {
    font-size: 14px;
    color: #555;
    cursor: pointer;
    padding-left: 10px
}

.expand-reply-list svg.icon-expand-more {
    display: inline-block !important;
    vertical-align: text-top;
    fill: #777
}

.expand-reply-list svg.icon-expand-less {
    display: none !important;
    vertical-align: text-top;
    fill: #777
}

.comment-reply-list {
    padding-left: 20px;
    display: none
}

.comment {
    padding: 3px 0;
    border-bottom: 1px solid #ccc
}

.comment .icon-chat-bubble {
    display: inline-block;
    vertical-align: middle;
    fill: #027cd5;
    margin-right: 5px
}

.comment .msg {
    margin: 5px 0;
    font-size: 15px;
    line-height: 24px;
    color: #2E2E2E
}

.comment .at,
.comment .by {
    line-height: 18px;
    font-size: 12px;
    font-style: normal
}

.comment .by {
    float: left;
    font-weight: 700;
    color: #767676
}

.comment .by-admin {
    color: #027cd5
}

.comment .at {
    padding-left: 10px;
    font-weight: 400;
    color: #2E2E2E
}

.comment::after {
    display: table
}

.comment .reply {
    padding-left: 10px;
    font-size: 12px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer
}

.comment .reply .znl {
    display: inline-block;
    vertical-align: bottom
}

.comment-trigger svg,
.znn .zno img,
.znn .znp .znq img {
    vertical-align: middle
}

.comment.show-reply-list .comment-reply-list {
    display: block
}

.comment.show-reply-list .icon-expand-less {
    display: inline-block !important
}

.comment.show-reply-list .icon-expand-more {
    display: none !important
}

.comment-reply::before {
    content: "\21aa";
    position: absolute;
    left: -19px;
    top: 5px;
    color: #027cd5
}

.comment-form::after,
.comment-reply::after {
    content: "";
    clear: both;
    display: table
}

.comment-reply .msg {
    font-size: 13px
}

.viewMore {
    margin: 10px auto;
    cursor: pointer;
    padding: 7px 0;
    width: 125px;
    height: 30px;
    border-radius: 7px;
    color: #3eaedc;
    background: #f6f7fb;
    border: 1px solid #3eaedc
}

.viewMore:hover {
    background: #3eaedc;
    color: #f6f7fb
}

.comment-form {
    padding: 5px 0;
    margin-top: 10px
}

.znm {
    position: relative
}

.znn,
.znn .znp {
    position: fixed;
    bottom: 50px;
    right: 40px
}

@media screen and (max-width:670px) {
    .zdz .person {
        width: 100%;
        float: none
    }

    .zdz .submit {
        float: none;
        width: 150px
    }
}

.comment-trigger {
    cursor: pointer;
    white-space: nowrap
}

.comment-trigger .icon-expand-more {
    display: inline-block
}

.comment-trigger .icon-expand-less,
.comment-visible .icon-expand-more {
    display: none
}

.comment-visible .icon-expand-less {
    display: inline-block
}

.comment-visible .zdz {
    display: block
}

.znn .zno,
.znn .znp {
    display: none;
    z-index: 100
}

.znn {
    z-index: 100
}

.znn .zno {
    background-color: transparent;
    border-radius: 50%;
    width: 80px;
    height: 80px
}

.znn .zno img {
    width: 100%;
    height: auto;
    transition: all .3s ease-out;
    border-radius: 50%
}

.znn .znp {
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.znn .znp .znq {
    border-radius: 50%;
    z-index: 100;
    width: 80px;
    height: 80px;
    display: block;
    margin: 5px 0
}

.znn .znp .znq img {
    width: 100%;
    height: auto;
    border-radius: 50%
}

.znn .znp .znr {
    position: absolute;
    right: -20px;
    display: none;
    transition: opacity .3s ease-in-out;
    will-change: opacity;
    z-index: inherit;
    cursor: pointer
}

.znn .znp .znr.zns,
.znn .znp .znr.znt,
.znn .znp .znr.znu,
.znn .znp .znr.zox,
.znn .znp .znr.zoy {
    bottom: 90px
}

.znn .znp .znv {
    display: block
}

.znn .znp .znw {
    display: none
}

.znn .znp .z6m {
    opacity: 1
}

.znn .znp .hidden,
div.zpe {
    opacity: 0
}

.znn .znv {
    display: block
}

.znn .znw,
div.zpe {
    display: none
}

.z10 {
    background-color: transparent !important
}

div.zp7 {
    border: 3px solid green !important;
    background: #efffef
}

div.zp8 {
    border: 3px solid #ff6232 !important;
    background: #fff4f4
}

div.zp9 {
    border: 3px solid #ff7d32 !important;
    background: #fff1e9
}

div.zpa {
    border: 3px solid #1c7ce9 !important;
    background: #e6f0ff
}

div.zpb {
    border: 3px solid #ff7d32 !important;
    background: #fff1e9
}

div.zpc,
div.zpd {
    border: 3px solid #19ffff !important;
    background: #e4fefe
}

div.zpe {
    color: green;
    font-size: large;
    background: rgba(219, 255, 219, .651);
    border-radius: 0 0 10px 10px;
    padding: 4px;
    transition: opacity .5s ease-in-out
}

.zv {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0 10px;
    background: #f4f4f4;
    border-radius: 5px;
    transition: filter .3s ease-in-out
}

.zpi {
    filter: blur(8px)
}

div.zpj {
    padding: 2%;
    margin: 3%
}

.zps {
    margin: 15px
}

.zpk {
    margin: 15px 0
}

.zpl {
    width: 100px;
    max-width: 150px;
    max-height: 150px;
    height: 100px;
    border-radius: 50%;
    object-fit: scale-down;
    border: 1px solid #000
}

.zpm {
    border-radius: 50px;
    max-width: 900px !important
}

.z3x {
    color: red !important;
    font-size: 40px !important;
    font-family: Montserrat, sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal
}

.zpo,
.zpp {
    color: #fff;
    padding: 8px 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer
}

.zpn {
    margin-top: 10px
}

.zpo {
    background-color: #28a745;
    border: none;
    border-radius: 5px
}

.zpp {
    background-color: #007bff;
    border: none;
    border-radius: 5px
}

.zpt.open {
    backdrop-filter: blur(7px)
}