@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) { ... }
*/

/* =========================================================================
FONTS
========================================================================= */
.gotham-bold {
  font-family: 'Gotham-Bold', system-ui;
}

.gotham-black {
  font-family: 'Gotham-Black', system-ui;
}

.imagine-sh {
  font-weight: bold;
  color: #F0532D;
}

/* =========================================================================
COLORS
========================================================================= */
.background {
  background: #FFF;
}

.header_gradient {
  background-color: #F88022;
  background-image: linear-gradient(to right, #EC401E, #F88022);
}

.text_card_gradient {
  background-color: #FEEBE2;
  background-image: linear-gradient(to right, #FFF1ED, #FEEBE2, #FEE6D8);
}

.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;
}

/* =========================================================================
GENERAL
========================================================================= */
.body-content {
  font-family: 'Gotham-Book', system-ui;
  color: black;
}

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;
}

.imagine-divider {
  border-top: 2px solid #F88022;
}

.notice_box {
  background: #FFF;
  margin: 2rem 0;
  padding: 1rem;
  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 CAPTCHA */
.g-recaptcha > div {
  margin: 0 auto;
}

/* .g-recaptcha iframe {
  border-radius: 10px;
} */

.selected{
  /* box-shadow: rgba(0, 0, 0, 0.50) 0px 5px 15px; */
  opacity: 1 !important;
  transform: scale(1.1);
  transition: ease all 0.3s;
}

.form-label {
  font-weight: bold;
  padding-left:30px;
  position: relative;
}

.package-label:before{
  content: '';
  background:url('../img/selectpackage.png');
  background-size:cover;
  position: absolute;
  width:25px;
  height:25px;
  margin-left:-30px;
}

.provider-label:before,
.support-label:before{
  content: '';
  background:url('../img/coverage.png');
  background-size:cover;
  position: absolute;
  width:25px;
  height:25px;
  margin-left:-30px;
}

.back_link {
  color: #F7941F;
  font-weight: bold;
}

.back_link:hover {
  color: #F0532D;
  text-decoration: none;
}

/* =========================================================================
BUTTONS
========================================================================= */
button:focus {
  outline: none;
}

.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;
}

.btn-imagine-alt {
  color: #fff;
  background-color: #F47020;
  border-color: #F47020;
  width: 100%;
  border-radius: 25px;
}

.btn-imagine-alt.focus, .btn-imagine-alt:focus {
  box-shadow: 0 0 0 0.2rem rgb(72 180 97 / 50%);
}

.btn-imagine-alt:hover {
  color: #fff;
  background-color: #F7941F;
  border-color: #F7941F;
}

.defaultBtn:disabled {
  opacity: 0.7;
}

.defaultBtn[disabled]:hover {
  cursor: not-allowed;
}

.btn-select {
  color: #333;
  background-color: #fff;
  border-color: #333;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}

.btn-select:not(:disabled):not(.disabled).active, 
.btn-select:not(:disabled):not(.disabled):active, 
.show>.btn-select.dropdown-toggle {
  color: #fff;
  background-color: #F7941F;
  border-color: #F0532D;
}

.btn-select:before {
  content: '';
  background:url('../img/Imagine-esim-add.png');
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 25px;
  height: 25px;
}

.btn-select.active:before {
  content: '';
  background:url('../img/Imagine-esim-selected.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.btn-select h6 {
  display: inline-block;
}

.btn.focus, .btn:focus {
  box-shadow: none;
}

.btn-popup {
  color: #333;
  background-color: #fff;
  border-color: #333;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  width: 50%;
}

.btn-popup:before {
  content: '';
  background:url('../img/Imagine-esim-add.png');
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 25px;
  height: 25px;
}

.btn-cancel {
  color: #F88022;
  background-color: #fff;
  border-color: #F88022;
  border-radius: 25px;
  min-width: 200px;
  width: 250px;
  transition: ease 0.5s all;
}

.btn-cancel:hover {
  color: #F88022;
  opacity: 0.7;
}

.btn-continue {
  color: #FFF;
  background-color: #F88022;
  border-color: #F88022;
  border-radius: 25px;
  min-width: 200px;
  width: 250px;
  transition: ease 0.5s all;
}

.btn-continue:hover {
  color: #FFF;
  opacity: 0.7;
}

/* =========================================================================
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%; 
}

/* =========================================================================
NAVBAR
========================================================================= */
.navbar-nav li.nav-item {
  margin-left: 0;
}

@media (min-width: 768px) {
  .navbar-nav li.nav-item {
    margin-left: 2rem;
  }
}

.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
  color: #F36E30;
  font-family: 'Gotham-Bold', system-ui;
}

.navbar-light .navbar-nav .nav-link {
  font-family: 'Gotham-Bold', system-ui;
  color: #555
}

/* =========================================================================
NAVIGATION TABS
========================================================================= */
.nav-tabs {
  margin-bottom: 1.5rem;
  border: 0;
  justify-content: start;
  align-items: center;
}

@media (min-width: 768px) {
  .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: black;
  border: 0;
  border-bottom: 5px solid transparent;
}

@media (min-width: 768px) {
  .nav-tabs .nav-link {
    padding: 0rem 2rem;
  }
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active {
  color: black;
  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;
}

/* =========================================================================
INDEX PAGE
========================================================================= */
.plan-c {
  position: relative;
  margin: 15px auto;
  padding: 0;
  display: block;
  border-radius: 25px;
  border: 1px solid #ccc;
  max-width: 400px;
  opacity: 0.8;
  transition: ease all 0.3s;
}

/* @media (min-width: 768px) {
  .plan-c {
    
  }
} */

.plan-c .plan-top {
  margin: 0;
  padding: 15px;
  border: 1px solid transparent;
  border-bottom-color: #ccc;
  min-height: 185px;
  align-content: center;
}

@media (min-width: 768px) {
	.plan-c .plan-top {
	  min-height: 100px;
	}
}

.plan-c .plan-bottom {
  margin: 0;
  padding: 15px;
}

.plan-c .planimg-prepaid {
  width: 100%;
  margin: 0 auto;
  padding: 15px 0 0;
}

.plan-c .planimg-postpaid {
  /* padding: 15px 35px 0; */
  width: 50%;
  margin: 0 auto;
  padding: 15px 0 0;
}

.plan-c h1 {
  color: #F88022;
  font-family: 'Gotham-Black';
}

.plan-c p {
  margin: 0;
  text-align: center;
  color: #333;
  font-family: 'Gotham-Bold';
  font-size: 1rem;
}

.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;
}

.product_name_label span {
  font-size: 0.6rem;
}

@media (min-width: 768px) {
  .product_name_label {
    font-size: 1rem;
  }

  .product_name_label span {
    font-size: 0.8rem;
  }
}

#networkTable tr {
  border: 1px solid transparent;
  border-bottom-color: rgba(0,0,0,.1);
}

/* =========================================================================
PLANS PAGE
========================================================================= */
.plan-breadcrumb {
  width: 70%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .plan-breadcrumb {
    width: 60%;
  }
}

.content-breadcrumb {
  margin: 30px 0;
}

@media (min-width: 768px) {
  .content-breadcrumb {
    margin: 15px 0 30px;
  }
}

.content-breadcrumb h6 {
  color: white;
  margin: 0;
  padding: 0;
}

.content-breadcrumb.active:after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  height: 0.1em;
  border: 3px solid yellow;
  border-radius: 10px;
  width: 70%;
  margin: 0 auto;
}

.number-indicator {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

/* =========================================================================
LEFT PANEL
========================================================================= */
.left-panel {
  padding: 0;
}

@media (min-width: 768px) {
  .left-panel {
    padding: 30px;
  }
}


.left-panel select {
  border-radius: 12px;
  border: 2px solid #333;
}

.simnote {
  margin: 0;
  padding: 15px;
  border: 1px solid #F0532D;
  border-radius: 12px;
  background: #FEEBE2;
}

.modalbody-section {
  border: 1px solid #F0532D;
  padding: 30px;
  border-radius: 15px;
}

#numberField {
  border-color: #333;
  border-radius: 8px;
  text-align: center;
}

#clearNo {
  color: #F0532D;
}

.grid-container {
  display: grid;
  gap: 10px;
}

.grid-item {
  text-align: center;
}

.grid_1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid_2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid_3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid_4 {
  grid-template-columns: repeat(2, 1fr);
}

.grid_5 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 575px) {
  .grid_4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid_5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.form-check {
  padding: 0;
  text-align: center;
}

.form-check-label:hover {
  cursor: pointer;
}

.form-check-input[type="radio"] {
  visibility: hidden;
}

.form-check-label {
  border: 1px solid #333;
  width: 100%;
  border-radius: 8px;
}

.form-check-input[type="radio"]:checked + .form-check-label {
  font-weight: bold;
  background: #F88022;
  border-color: #F0532D;
  color: white;
}

#searchmsisdn-c {
  padding-top: 15px;
}

/* =========================================================================
RIGHT PANEL
========================================================================= */
.right-panel {
  padding: 0;
  text-align: center;
}

.content_bubble {
  padding: 2rem 1rem;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .right-panel {
    padding: 30px;
  }

  .content_bubble {
    padding: 2rem;
  } 
}

/* =========================================================================
PRODUCTS PAGE
========================================================================= */
.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;
  width: 100%;
}

@media (min-width: 576px) {
  #denoSelect {
    width: 250px;
  } 
}

#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;
}

.country_btn {
  background: white;
  color: gray;
  border: 2px solid gray;
  width: 100%;
  position: relative;
}

@media (min-width: 576px) {
  .country_btn {
    width: 250px;
  } 
}

.country_btn i {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(-50%, 60%);
}

/* =========================================================================
PAYMENT PREVIEW
========================================================================= */
.total_amt {
  font-size: 1.5rem;
}

#myOTP,
#myComplete {
  color: #EC401E;
}

.modal-content {
  padding: 0;
}

@media (min-width: 768px) {
  .modal-content {
    padding: 30px;
  }
}

.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;
}