@font-face {
  font-family: 'Gotham-Book';
  src: url('../fonts/Gotham-Book.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham-Medium';
  src: url('../fonts/Gotham-Medium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham-Bold';
  src: url('../fonts/Gotham-Bold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham-Black';
  src: url('../fonts/Gotham-Black.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* HELPERS
// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/

/* =========================================================================
GENERAL
========================================================================= */
.body-content {
  font-family: 'Gotham-Book', system-ui;
  color: white;
}

body.wait, body.wait *{
  cursor: wait !important;   
}

.not-allowed { cursor: not-allowed; }

div.round {
  border: 2px solid red; 
  border-radius: 25px;
  width:80%;
  background-color:#FED;
  padding:10px;
}

::placeholder {color: #F0532D !important; opacity: 0.5 !important;}

input {
	border-color: transparent;
}

input:disabled {
    background-color: #C0C0C0 !important;
    opacity: 0.5 !important;
    border-color: rgba(118, 118, 118, 0.3) !important;
}

select:disabled {
    background-color: #C0C0C0 !important;
    opacity: 0.5 !important;
    border-color: rgba(118, 118, 118, 0.3) !important;
}

button:focus {
  outline: none;
}

.imagine-divider {
  border-top: 2px solid #F88022;
}

.notice_box {
  background: #FEE6D8;
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 10px;
}

.notice_box .checkboxlabel {
  margin: 0;
  padding: 0 0 0 2.2rem;
  font-size: 0.9rem;
  position: relative;
}

.checkboxlabel:hover,
.checkboxlabel input#tnc:hover {
  cursor: pointer;
}

/* Hide the browser's default checkbox */
.checkboxlabel input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 3px;
  border: 1px solid #F88012;
}

/* On mouse-over, add a grey background color */
.checkboxlabel input:hover ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkboxlabel input:checked ~ .checkmark {
  background-color: #F88012;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkboxlabel input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkboxlabel .checkmark:after {
  left: 7px;
  top: 0px;
  width: 10px;
  height: 18px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.g-recaptcha > div {
  margin: 0 auto;
}

.selected{
  /* box-shadow: rgba(0, 0, 0, 0.50) 0px 5px 15px; */
  opacity: 1 !important;
  transform: scale(1.1);
  transition: ease all 0.3s;
}

.btn-imagine {
  color: #fff;
  background-color: #F0532D;
  border-color: #F0532D;
}

.btn-imagine.focus, .btn-imagine:focus {
  box-shadow: 0 0 0 0.2rem rgb(72 180 97 / 50%);
}

.btn-imagine:hover {
  color: #fff;
  background-color: #F47020;
  border-color: #F7941F;
}

.defaultBtn:disabled {
  opacity: 0.7;
}

.defaultBtn[disabled]:hover {
  cursor: not-allowed;
}

/* =========================================================================
FONTS
========================================================================= */
.gotham-bold {
  font-family: 'Gotham-Bold', system-ui;
}

.gotham-black {
  font-family: 'Gotham-Black', system-ui;
}

/* =========================================================================
COLORS
========================================================================= */
.background {
  background: #1B0125;
}


.header_gradient {
  background-color: #775485;
  background-image: linear-gradient(to right, #3468A4, #775485, #E6305F);
}

.text_card_gradient {
  background-color: #C9C6D5;
  background-image: linear-gradient(to right, #DAC3CA, #C9C6D5, #B5CAE3);
}

.button_gradient {
  background-color: #F36E30;
  background-image: linear-gradient(to right, #F88012, #F36E30, #EC401E);
}

.text_price {
  color: #EC401E;
}

.text_colour_1 {
  color: #DCDADA;
}

.text_colour_2 {
  color: #F88022;
}

.text_colour_3 {
  color: #1B0125;
}

.success_text {
  color: #1D9135;
}

.failed_text {
  color: #EC1E1E;
}

.link_text {
  color: #2DB7E0;
}

.link_text:hover {
  color: #0062A3;
}

/* =========================================================================
DIVIDERS
========================================================================= */
#big_divider {
  font-weight: bold;
  height: 3em;
}

hr.mini_divider {
  height: 15px; 
  border: 0px; 
  margin: 0;
}

@media (min-width: 768px) {
  #big_divider {
    height: 1.5em;
  }
  
  hr.mini_divider {
    height: 5px;
  }
}

/* =========================================================================
LOGO IMAGE
========================================================================= */
.logo {
  width: 150px;
}

.logo img {
  width: 100%; 
}

/* =========================================================================
PRODUCTS LIST
========================================================================= */
.label-header {
  position: relative;
}

.label-header span {
  top: 50%;
  position: absolute;
  left: 0;
  transform: translate(0, -50%);
}

.label-header h2 {
  margin: 0 0 0 4rem;
}

.accordion .card {
  border-color: #F0532D;
}

.accordion .card .card-header {
  background-image: -webkit-gradient(linear,left top,right top,from(#F7941F),to(#F0532D));
  background-image: -o-linear-gradient(left,#F7941F,#F0532D);
  background-image: linear-gradient(to right,#F7941F,#F0532D);
  border-color: #F0532D;
}

.card-header .btn-link {
  font-weight: bold;
  color: white;
}

.card-header:hover {
  cursor: pointer;
}

.card-header .btn-link:hover, 
.card-header .btn-link:focus {
  text-decoration: none;
}

.accordion .card .card-header .btn-link:after {
  content: "\f107";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  float: right;
  transform: rotate(0deg);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordion .card .card-header.collapsed .btn-link:after {
  transform: rotate(180deg);
}

.product-img {
  position: relative;
  margin: 15px auto;
  padding: 0 5px;
  display: block;
  /* border-radius: 25px; */
  /* border: 1px solid #ccc; */
  max-width: 200px;
  opacity: 0.8;
  transition: ease all 0.3s;
}

@media (min-width: 768px) {
  .product-img {
    padding: 0 15px;
  }
}

.product-img.product-deno-disabled {
  opacity: 0.3;
}

.product-img img {
  border-radius: inherit;
}

.product-img p {
  margin: 0;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #F0532D;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
}

.product-img.product-list:hover,
.product-img.product-deno:hover {
  cursor:pointer !important;
  /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
  opacity: 1;
  transform: scale(1.05);
  transition: ease all 0.3s;
}

.product-img.product-deno-disabled:hover {
  cursor:not-allowed !important;
}

.previewtable {
  border-collapse: separate;
  border-spacing: 0.5em;
}

.previewtable th {
  background-color:#FFF8F0;
}

.previewtable th,
.previewtable td {
  color: #F0532D;
}

.product_name_label {
  font-size: 0.8rem;
  white-space: nowrap;
}

.product_name_label span {
  font-size: 0.6rem;
}

@media (min-width: 768px) {
  .product_name_label {
    font-size: 0.9rem;
  }

  .product_name_label span {
    font-size: 0.8rem;
  }
}

/* =========================================================================
NAVIGATION TABS
========================================================================= */
.nav-tabs {
  margin-bottom: 1.5rem;
  border: 0;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-tabs {
    justify-content: start;
    align-items: center;
  }

  .nav-link {
    margin: 0 5rem 0 0rem;
  }
}

.nav-link {
  margin: 0;
}

.nav-tabs .nav-link {
  padding: 0rem 1rem;
  border-radius: 0;
  margin-bottom: 0;
  font-size: 1.3rem;
  color: white;
  border: 0;
  border-bottom: 5px solid transparent;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active {
  color: white;
  background: none;
  font-family: 'Gotham-Bold';
}

.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  border-color: transparent;
  opacity: 0.8;
}

.nav-tabs .nav-link.active {
  border-color: #F88012;
}

/* =========================================================================
PRODUCTS PAGE
========================================================================= */
.content_bubble {
  padding: 3rem 1rem;
  border-radius: 50px;
}

@media (min-width: 768px) {
  .content_bubble {
    padding: 3rem;
  }
  
}

.content_bubble input {
  border-radius: 50px;
  border-color: transparent !important;
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: gray !important;
  opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: gray;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: gray;
}

.product_img {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

.product_title {
  font-family: "Gotham-Bold";
}

.product_price_label {
  font-family: "Gotham-Bold";
}

#denoSelect {
  background: transparent;
  color: gray;
  border: 2px solid gray;
}

#denoSelect:hover {
  cursor: pointer;
}

#denoSelect option {
  background: gray;
  color: white;
}

#denoSelect option:hover {
  cursor: pointer;
}

#denoSelect option[disabled] {
  color: #aaa;
}

#denoSelect option[disabled]:hover {
  cursor: not-allowed;
}

/* =========================================================================
PAYMENT PREVIEW
========================================================================= */
.total_amt {
  font-size: 1.5rem;
}

#myOTP,
#myComplete {
  color: #EC401E;
}

.modal-content {
  padding: 2rem;
}

.modal-header {
  justify-content: center;
  border: 0;
  padding-bottom: 0;
}

#divOTPMessage {
  font-size: 0.9rem;
}

/* =========================================================================
FOOTER
========================================================================= */
.footer-wrapper {
  width: 100%;
  position: relative;
  display: block;
  font-family: 'Gotham-Book', system-ui;
}

.footer-widgets {
  padding: 30px 0 0;
  font-size: 0.9rem;
  background-color: #545456;
  border-top: 1px solid rgba(0,0,0,.05);
  color: #f1f1f1;
}

.absolute-footer {
  font-size: .8em;
  color: rgba(255,255,255,.5);
  background-color: #545456;
  padding: 10px 0 15px;

}

.menu_title {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-family: 'Gotham-Medium';
}

.menu_items ul {
  list-style-type: none;
  padding: 0;
}

.menu_items ul li {
  margin-bottom: 0.2em;
}

.menu_items ul li a {
  color: white;
  opacity: 0.9;
  font-size: 0.9rem;
  transition: ease all 0.5s;
}

.menu_items ul li a:hover {
  opacity: 1;
  text-decoration: none;
}

.social-icons {
  display: inline-block;
  vertical-align: middle;
  font-size: .85em;
}

.social-icons a {
  display: inline-block;
  color: white;
  padding: 0.6em;
  border-radius: 50px;
  text-align: center;
}

.social-icons .facebook {
  background-color: #3a589d !important;
}

.social-icons .instagram {
  background-color: #3b6994 !important;
}

.social-icons .twitter {
  background-color: #2478ba !important;
}

.social-icons .youtube {
  background-color: #c33223 !important;
}

.social-icons i { 
  font-size: 1rem;
}

.social-icons i:before { 
  display: block;
  width: 1em;
  height: 1em;
}

.payment_details_h {
    padding: .3rem;
}
    
@media (max-width: 768px) {
    .payment_details_h {
        font-size: 1rem;
    }
}

.redirect_c .EditBtn {
    width: 100%;
}

@media (max-width: 768px) {
    .redirect_c .EditBtn {
        width: 50%;
    }
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(236, 64, 30,0.2);
  border-top: 3px solid #EC401E;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  /*vertical-align: middle;*/
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
