:root {
  --senaryColor: 255, 255, 255;
  --textColor: 49, 49, 49;
  --lightColor: 130, 136, 148;
  --borderColor: 181, 181, 181;
  --backgroundColor: 255, 255, 255;
  --box-shadow: 0px 0px 65px #A5A5A529;
  --mainFont: "Poppins", sans-serif;
  --transition: all 300ms ease-in-out;
  --btnWidth: 200px;
  --btnHeight: 60px;
  --h1: 3em;
  --h2: 2.5em;
  --h3: 2em;
  --h4: 1.5em;
  --h5: 1.25em;
  --text: 14px;
  --subText: 12px;
  --lineheight: 1.5;
  --border-radius: 5px;
}

/* Globals */
h1,
h2,
h3,
h4,
h5 {
  color: rgb(var(--secondaryColor));
}

h1 {
  font-size: var(--h1);
}

h2 {
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
}

h4 {
  font-size: var(--h4);
}

h5 {
  font-size: var(--h5);
}

p,
li,
span {
  color: rgb(var(--textColor));
}

p {
  font-size: var(--text);
}

li {
  font-size: var(--subText);
}

* {
  box-sizing: border-box;
}

body * {
  font-family: var(--mainFont);
  text-decoration: none;
}

/* Main Styles */
div#checkout-and-upgrade .btn {
  background-color: rgb(var(--primaryColor));
  color: rgb(var(--textOnPrimaryColor));
}
div#checkout-and-upgrade .btn.diy-continue-btn.difm {
  width: 382px !important;
  margin: auto;
}
div#checkout-and-upgrade .btn:hover {
  background-color: rgb(var(--secondaryColor));
  color: rgb(var(--textOnPrimaryColor));
}
div#checkout-and-upgrade .border-primary {
  border-color: rgb(var(--primaryColor)) !important;
}
div#checkout-and-upgrade .text-bg-primary {
  background-color: rgb(var(--primaryColor)) !important;
}
div#checkout-and-upgrade .text-bg-primary h5 {
  color: rgb(var(--textOnPrimaryColor));
}
div#checkout-and-upgrade .form-check-input:checked {
  background-color: rgb(var(--primaryColor));
  border-color: rgb(var(--primaryColor));
}
div#checkout-and-upgrade .form-check-input:checked:focus {
  border-color: rgb(var(--primaryColor));
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(var(--primaryColor)/25%);
}
div#checkout-and-upgrade header div.logo-header-wrapper a.logo-container {
  width: 280px;
  height: 60px;
  background: var(--bigLogo);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
div#checkout-and-upgrade header .cart-header-wrapper .cart-icon-container {
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
div#checkout-and-upgrade header .cart-header-wrapper .cart-icon-container .cart-count {
  width: 15px;
  height: 15px;
  right: 0;
  border-radius: 50%;
  background-color: rgb(var(--primaryColor));
  font-size: var(--subText);
  font-weight: 600;
}
div#checkout-and-upgrade header .cart-header-wrapper .cart-icon-container:hover svg {
  fill: rgb(var(--primaryColor));
}
div#checkout-and-upgrade header .cart-header-wrapper .cart-icon-container svg {
  fill: rgb(var(--secondaryColor));
  width: 100%;
  height: 100%;
  transition: var(--transition);
}
div#checkout-and-upgrade header .cart-header-wrapper .cart-content-container {
  min-width: 440px;
  background-color: #fff;
  box-shadow: var(--box-shadow);
  top: 50px;
  right: 0;
  z-index: 5;
  opacity: 1;
  transform: scale(1);
  transform-origin: right top 0;
  transition: var(--transition);
}
div#checkout-and-upgrade header .cart-header-wrapper .cart-content-container.hidden {
  opacity: 0 !important;
  transform: scale(0) !important;
}
div#checkout-and-upgrade header .cart-header-wrapper .cart-content-container .cart-content-title_text {
  font-size: var(--h5);
  font-weight: 600;
}
div#checkout-and-upgrade header .cart-header-wrapper .cart-content-container .cart-divider {
  width: 100%;
  height: 2px;
  background-color: rgb(var(--primaryColor));
}
div#checkout-and-upgrade header .cart-header-wrapper .cart-content-container .cart-item-title {
  font-size: var(--text);
}
div#checkout-and-upgrade header .cart-header-wrapper .cart-content-container .cart-item-description {
  font-size: var(--subText);
}
div#checkout-and-upgrade header .cart-header-wrapper .cart-content-container .cart-item-remove {
  width: 140px;
  height: 40px;
  font-size: var(--text);
  background-color: rgb(var(--primaryColor));
  border-radius: var(--border-radius);
  color: rgb(var(--textOnPrimaryColor));
  cursor: pointer;
  border: unset;
  transition: var(--transition);
  line-height: var(--lineheight);
}
div#checkout-and-upgrade header .cart-header-wrapper .cart-content-container .cart-item-remove:hover {
  transition: var(--transition);
  background-color: rgb(var(--secondaryColor));
}
div#checkout-and-upgrade header .cart-header-wrapper .cart-content-container .cart-item-price-denom {
  font-size: var(--h5);
  font-weight: 600;
}
div#checkout-and-upgrade header .cart-header-wrapper .cart-content-container .cart-item-price-detail {
  font-size: var(--subText);
}
div#checkout-and-upgrade header .cart-header-wrapper .cart-content-container .cart-total-price {
  font-size: var(--h5);
  font-weight: 600;
}
div#checkout-and-upgrade header div.toggle-container {
  justify-content: center;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
div#checkout-and-upgrade header div.toggle-container input.form-check-input:checked {
  background-color: rgb(var(--primaryColor));
  border-color: rgb(var(--primaryColor));
}
div#checkout-and-upgrade header div.toggle-container input.form-check-input:focus {
  box-shadow: none;
  border-color: none;
}
div#checkout-and-upgrade main .checkout-main-image {
  width: 100%;
  height: 400px;
}
div#checkout-and-upgrade main .checkout-main-icon {
  width: 200px;
  height: 200px;
  padding: 35px;
  margin-top: -140px;
  margin-left: 50px;
  background-color: #fff;
  box-shadow: var(--box-shadow);
  border-radius: 5px;
}
div#checkout-and-upgrade main .checkout-main-icon svg {
  fill: rgba(var(--primaryColor), 1);
}
div#checkout-and-upgrade main .pricing-header p {
  font-size: 16px;
}
div#checkout-and-upgrade main button.simple-editor-checkout-btn {
  color: rgb(var(--textOnPrimaryColor));
  border-color: rgb(var(--primaryColor));
  background-color: rgb(var(--primaryColor));
  border-radius: var(--border-radius);
  transition: var(--transition);
}
div#checkout-and-upgrade main button.simple-editor-checkout-btn .spinner-border {
  margin: auto;
}
div#checkout-and-upgrade main button.simple-editor-checkout-btn:hover {
  border-color: rgb(var(--secondaryColor));
  background-color: rgb(var(--secondaryColor));
}
div#checkout-and-upgrade main button.simple-editor-checkout-btn:hover span {
  color: rgb(var(--textOnPrimaryColor));
}
div#checkout-and-upgrade main button.simple-editor-checkout-btn:focus {
  box-shadow: none;
}
div#checkout-and-upgrade main .caa-addon-wrapper .caa-addon-title {
  font-weight: 600;
}
div#checkout-and-upgrade main .caa-addon-wrapper .caa-addon-list {
  font-size: var(--subText);
}
div#checkout-and-upgrade main .caa-addon-wrapper .caa-addon-list .form-check {
  min-height: auto;
  margin: 7px 0;
}
div#checkout-and-upgrade main .inclusions-wrapper .inclusion-item {
  width: 31.3%;
  box-shadow: var(--box-shadow);
}
div#checkout-and-upgrade main .inclusions-wrapper .inclusion-item .inclusion-item-icon {
  width: 90px;
  height: 90px;
  margin-top: -60px;
  background-color: rgba(var(--primaryColor), 1);
}
div#checkout-and-upgrade main .inclusions-wrapper .inclusion-item .inclusion-item-icon svg {
  fill: rgba(var(--textOnPrimaryColor), 1);
}
div#checkout-and-upgrade main .inclusions-wrapper .inclusion-item .inclusion-item-details .inclusion-details-title {
  font-size: 24px;
  font-weight: 600;
}
div#checkout-and-upgrade main .inclusions-wrapper .inclusion-item .inclusion-item-details .inclusion-details-text-wrapper {
  font-weight: 500;
}
div#checkout-and-upgrade main .inclusions-wrapper .inclusion-item .inclusion-item-details .inclusion-details-text-wrapper .inclusion-check-icon {
  width: 20px;
  height: 20px;
  background-color: rgba(var(--primaryColor), 1);
  border-radius: 50%;
}
div#checkout-and-upgrade main .inclusions-wrapper .inclusion-item .inclusion-item-details .inclusion-details-text-wrapper .inclusion-check-icon svg path {
  stroke: rgba(var(--textOnPrimaryColor), 1);
}

div.swal2-container.disabled *:active {
  pointer-events: none !important;
}
div.swal2-container.no-border {
  border: 0 !important;
}
div.swal2-container .template-popup {
  height: 90vh;
}
div.swal2-container .swal2-html-container {
  overflow: hidden;
}
div.swal2-container ::-webkit-scrollbar {
  width: 15px;
}
div.swal2-container ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px grey;
  border-radius: 10px;
}
div.swal2-container ::-webkit-scrollbar-thumb {
  background: rgb(var(--primaryColor));
  border-radius: 10px;
}
div.swal2-container .caa-header-tempListingContainer {
  height: 100%;
}
div.swal2-container .caa-header-tempListingTxtContent {
  flex-wrap: wrap;
  text-align: center;
  padding-bottom: 5px;
  width: 100%;
}
div.swal2-container .tempFilter {
  width: auto;
  padding: 10px 15px;
  font-size: var(--subText);
  border: none;
  background-color: unset;
  border-bottom: 2px solid rgb(243, 243, 243);
  transition: var(--transition);
  cursor: pointer;
}
div.swal2-container .tempFilter:hover {
  border-bottom: 2px solid rgb(var(--primaryColor));
  transition: var(--transition);
}
div.swal2-container .tempFilter.activeFilter {
  border-bottom: 2px solid rgb(var(--primaryColor));
}
div.swal2-container .caa-header-tempListingDescTxt {
  padding: 20px 0;
}
div.swal2-container .caa-header-tempListingFilter {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
}
div.swal2-container .caa-header-tempListingFilter .slick-arrow {
  position: absolute;
  top: 13px;
  bottom: 0px;
  margin: auto;
  cursor: pointer;
  transition: var(--transition);
  font-size: var(--text);
}
div.swal2-container .caa-header-tempListingFilter .slick-arrow.prevArrow {
  left: -40px;
}
div.swal2-container .caa-header-tempListingFilter .slick-arrow.nextArrow {
  right: -40px;
}
div.swal2-container .caa-header-tempListingFilter .slick-arrow:hover {
  color: rgb(var(--primaryColor));
}
div.swal2-container .caa-header-tempItem {
  width: 30%;
  height: auto;
  margin: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 65px rgba(165, 165, 165, 0.1607843137);
}
div.swal2-container .caa-header-tempItemImg {
  position: relative;
}
div.swal2-container .caa-header-tempItemImg:hover .caa-header-tempItemHoverContent {
  top: 0;
  transition: var(--transition);
}
div.swal2-container .caa-header-tempItemImgContent {
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  width: 100%;
  height: auto;
}
div.swal2-container .caa-header-tempListingPreview {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding-top: 30px;
}
div.swal2-container .caa-header-tempListingPreview:not(.tempcontainer) {
  height: 100%;
}
div.swal2-container .caa-header-tempListingPreview.tempcontainer {
  height: 75%;
  overflow: auto;
  margin: auto;
}
div.swal2-container .caa-header-tempItemHoverContent {
  transition: var(--transition);
  position: absolute;
  height: 100%;
  width: 100%;
  top: -100%;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.76);
}
div.swal2-container .caa-header-tempItemHoverContent a span {
  font-size: var(--text);
}
div.swal2-container .caa-header-tempItemBtn1 {
  width: 200px;
  height: 55px;
  background-color: rgb(var(--primaryColor));
  border-radius: 20px;
  cursor: pointer;
  margin: 10px;
  padding: 10px;
  border: unset;
  transition: var(--transition);
  line-height: var(--lineheight);
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.swal2-container .caa-header-tempItemBtn1 span {
  color: rgb(var(--textOnPrimaryColor));
}
div.swal2-container .caa-header-tempItemBtn1:hover {
  background-color: rgb(var(--secondaryColor));
  transition: var(--transition);
}
div.swal2-container .caa-header-tempItemBtn2 {
  background: none;
  border: none;
  cursor: pointer;
  width: auto;
  height: 55px;
  transition: var(--transition);
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.swal2-container .caa-header-tempItemBtn2 span {
  color: rgb(var(--senaryColor));
}
div.swal2-container .caa-header-tempItemBtn2:hover {
  border-bottom: 2px solid rgb(var(--primaryColor));
  transition: var(--transition);
}
div.swal2-container .caa-header-tempItemBottom {
  display: flex;
  padding: 20px;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
}
div.swal2-container .caa-header-tempItemTitle p {
  font-size: var(--subText);
  margin-bottom: 0;
  font-weight: 600;
  text-align: left;
}
div.swal2-container .caa-header-tempItemDeviceIcon {
  text-align: right;
  font-size: 25px;
  cursor: pointer;
  width: 50%;
}
div.swal2-container .caa-header-tempItemDeviceIcon svg {
  margin: 0 5px;
  fill: #b2b2b2;
  transition: var(--transition);
}
div.swal2-container .caa-header-tempItemDeviceIcon svg:hover {
  fill: rgb(var(--primaryColor));
  transition: var(--transition);
}
div.swal2-container .caa-header-tempItemDeviceIcon svg:nth-child(3) {
  stroke: #b2b2b2;
  transition: var(--transition);
}
div.swal2-container .caa-header-tempItemDeviceIcon svg:nth-child(3):hover {
  stroke: rgb(var(--primaryColor));
  transition: var(--transition);
}
div.swal2-container .mobPrev, div.swal2-container .tabPrev {
  display: none;
}

.disabled * {
  pointer-events: none !important;
}

/*LOADER*/
.cau-upgrading-loader {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: auto;
}
.cau-upgrading-loader div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.cau-upgrading-loader div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0e0e0e;
  margin: -4px 0 0 -4px;
}
.cau-upgrading-loader div:nth-child(1) {
  animation-delay: -0.036s;
}
.cau-upgrading-loader div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.cau-upgrading-loader div:nth-child(2) {
  animation-delay: -0.072s;
}
.cau-upgrading-loader div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.cau-upgrading-loader div:nth-child(3) {
  animation-delay: -0.108s;
}
.cau-upgrading-loader div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.cau-upgrading-loader div:nth-child(4) {
  animation-delay: -0.144s;
}
.cau-upgrading-loader div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.cau-upgrading-loader div:nth-child(5) {
  animation-delay: -0.18s;
}
.cau-upgrading-loader div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.cau-upgrading-loader div:nth-child(6) {
  animation-delay: -0.216s;
}
.cau-upgrading-loader div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.cau-upgrading-loader div:nth-child(7) {
  animation-delay: -0.252s;
}
.cau-upgrading-loader div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.cau-upgrading-loader div:nth-child(8) {
  animation-delay: -0.288s;
}
.cau-upgrading-loader div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=checkout.css.map */