html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding: 0px;
  margin: 0px;
  line-height: 1.4;
  font-family: "Inter", sans-serif;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
}

p {
  margin-bottom: 30px;
}

strong {
  font-weight: 600;
}

hr {
  margin: 30px 0 30px 0;
  border-color: #ededed;
}


.customer-form-cotnent.active .actions-toolbar {
    margin-left: 0px !important;
}
.LoginPageContainer .EmailSectionWrap .actions-toolbar {
 
    margin-left: 0px !important;
}


.offer-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: url(../../images/offers-deals/Deals-herabackground.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 1;
  padding: 20px 20px;
}

.deal_container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.deal_container .time-value {
  min-width: 80px;
  font-size: 45px;
}
.deal_container .countdown-timer {
  margin-bottom: 70px;
}
.deal_container .time-label {
  font-size: 18px;
}
.deal_container .separator {
  font-size: 2.8rem;
  top: -16px;
}
.offer-wrap .header {
  color: white;
  margin-bottom: 30px;
}
.offer-wrap .header h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
  font-family: "Inter", sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.offer-wrap .header p {
  font-size: 32px;
  color: #fff;
  font-family: "Inter", sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0px;
  line-height: 43px;
}

.countdown {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-bottom: 100px;
  align-items: center;
}
.countdown-box {
  background-color: #2d2a5a;
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 7px 6px 0px rgb(0 0 0 / 30%);
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.countdown-box:before {
  content: "";
  z-index: -2;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  position: absolute;
  width: 99999px;
  height: 99999px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: conic-gradient(
    rgba(0, 0, 0, 0),
    #1976ed,
    rgba(0, 0, 0, 0) 25%
  );
  animation: rotate 4s linear infinite;
}

.countdown-box:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 5px;
  top: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background: #292a2e;
  border-radius: 7px;
}

@keyframes rotate {
  100% {
    transform: translate(-50%, -50%) rotate(1turn);
  }
}

.countdown-value {
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
  font-family: "Inter", sans-serif;
  letter-spacing: 2px;
}
.countdown .separator {
  font-size: 36px;
  font-weight: bold;
  position: relative;
  right: -3px;
  line-height: normal;
  color: #fff;
}
.countdown-label {
  font-size: 16px;
  margin-top: 8px;
  font-family: "Inter", sans-serif;
}

.offer-container {
  position: relative;
  max-width: 900px;
  width: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-bottom: 60px;
}
.monthly-card {
  background-image: url("../../images/offers-deals/monthly-card.png");
}
.semi-annual-card {
  background-image: url("../../images/offers-deals/semi-annual-card.png");
}
.annual-card {
  background-image: url("../../images/offers-deals/annual-card.png");
}
.offer-tag {
  position: absolute;
  top: -40px;
  left: 70px;
  background-color: #e67e22;
  color: white;
  padding: 10px 15px 40px 15px;
  border-radius: 21px;
  font-weight: 500;
  font-size: 18px;
  box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.3);
  z-index: -1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.offer-card {
  border-radius: 10px;
  padding: 15px 60px 30px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
}

.offer-content {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.offer-title {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin: 0px;
  font-family: "Inter", sans-serif;
}

.offer-subtitle {
  margin-bottom: 20px;
  color: #000;
  font-weight: 500;
  font-size: 19px;
  font-family: "Inter", sans-serif;
}

.original-price {
  text-decoration: line-through;
  opacity: 0.7;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}

.current-price {
  font-weight: 600;
  font-size: 22px;
  font-family: "Inter", sans-serif;
}

.feature-list {
  display: grid;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.feature {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #000;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.feature-icon {
  display: flex;
  color: #000;
  margin-right: 10px;
  font-weight: bold;
  width: 18px;
}

.offer-action {
  text-align: center;
  padding-left: 20px;
  margin-top: -20px;
}

.discount {
  font-size: 47px;
  color: #352a67;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgb(255 255 255 / 30%);
}

.grab-btn {
  background-color: #d66b1f;
  color: #fff!important;
  border: none;
  padding: 19px 23px;
  border-radius: 30px;
  font-size: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: "Inter", sans-serif;
}

.grab-btn:hover {
  background-color: #d35400;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: #fff;
}

.grab-btn:active,
.grab-btn:focus {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: #fff;
  background-color: #d35400;
}

.semi-annual-card .offer-tag {
  background: #008691;
}
.semi-annual-card .discount {
  color: #063b40;
}
.semi-annual-card .grab-btn {
  background: #018692;
  border: 1px solid #0deaee;
}

.annual-card .offer-tag {
  background: #4e2692;
}
.annual-card .discount {
  color: #4e2692;
}
.annual-card .grab-btn {
  background: #4e2692;
  border: 1px solid #843cff;
}

 .customer-form-cotnent {
  display: none;
}
 .customer-form-cotnent.active {
  display: block;
}
  .dowanlodable-login-popup
  .customer-login-box
  .actions-toolbar
  .primary {
  width: 100%;
}
.LoginPageContainer .EmailSectionWrap .actions-toolbar {
    margin: 0px;
}
.dowanlodable-login-popup .customer-login-box .tab-action {
  display: flex;
  margin-bottom: 15px;
}
.dowanlodable-login-popup .response-msg {
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
}
.dowanlodable-login-popup .LoginFormContainer .LoginFormTabs .taeb-switch {
    margin-bottom: 0px;
}
.tab-action {
    width: 100%;
}

.dowanlodable-login-popup .customer-login-box .tab-action .tabnav {
    border-radius: 40px;
    background-color: #ebeff5;
    color: #282828;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    height: 40px;
    font-size: 16px;
    line-height: 30px;
}
.dowanlodable-login-popup .customer-login-box .LoginPageContainer .tab-action .tabnav {
    background: transparent;
}
.dowanlodable-login-popup .customer-login-box .tab-action .tabnav {
    border-radius: 40px;
    background-color: #ebeff5;
    color: #282828;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    height: 40px;
    font-size: 16px;
    line-height: 30px;
}
.tab-action .tabnav {
    width: 50%;
    float: left;
    text-align: center;
    padding: 5px 10px;
    border: 1px solid #000;
    box-sizing: border-box;
}
.dowanlodable-login-popup .customer-login-box .form-login .fieldset {
    margin-bottom: 0;
}
.cms-offers-and-deals .page-header .header.content { height: 100% !important; }
.cms-offers-and-deals.page-layout-1column.cms-page-view.page-layout-cms-full-width.overflow-hidden{ margin-right: 0px !important; }

@media (max-width: 768px) {
  .offer-wrap .header h1 {
    font-size: 36px;
  }
  .offer-wrap .header p {
    font-size: 28px;
  }
  .offer-tag {
    font-size: 14px;
    top: -36px;
    border-radius: 16px;
  }
  .offer-title {
    font-size: 26px;
  }
  .offer-subtitle {
    font-size: 18px;
  }
  .feature {
    font-size: 14px;
  }
  .discount {
    font-size: 38px;
  }
  .grab-btn {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .offer-action {
    width: 100%;
    margin-top: 30px;
    padding: 0px;
    background: radial-gradient(
      ellipse farthest-side at top center,
      rgba(0, 0, 0, 0.08),
      transparent
    );
  }
  .offer-container {
    background-image: unset;
    border-radius: 16px;
  }
  .monthly-card {
    background-color: #ffd54f;
  }
  .semi-annual-card {
    background: #7cd9ba;
  }
  .annual-card {
    background-color: #c5b3e6;
  }
  .offer-card {
    padding: 20px;
  }
  .offer-tag {
    left: 20px;
  }
  .deal_container .time-value {
    min-width: 70px;
    font-size: 35px;
  }
}
@media (max-width: 360px) {
  .offer-wrap .header h1 {
    font-size: 28px;
  }
  .offer-tag {
    left: 9px;
    font-size: 12px;
    padding: 10px 10px 40px 10px;
  }
  .offer-wrap .header p {
    font-size: 21px;
    line-height: 24px;
  }
  .countdown-value {
    font-size: 36px;
  }
}