/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
	background: #f2f2f2; /* fallback for old browsers */
	background: -webkit-linear-gradient(to left, #f2f2f2, #2a0845); /* Chrome 10-25, Safari 5.1-6 */
	position: relative;/*for safari*//body
	overflow: scroll;
}


 body {
	font-family: sans-serif;
	background: transparent;
	overflow: auto;/* for safari*/
    	position: relative;
} 



a,
a label {
	cursor: pointer;
    }
    /*form styles*/
    #msform {
	    text-align: center;
	    position: relative;
	    margin-top: 30px;
}

span{
font-weight:bold;
}
#msform fieldset {
	background: #e3efe9;
	border: 0 none;
	border-radius: 10px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 20px 30px;
	box-sizing: border-box;
	width: 84%;
	margin: 0 10%;

	/*stacking fieldsets above each other*/
	position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}

/*inputs*/
#msform input, #msform textarea {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 10px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: sans-serif;
	color: #2C3E50;
	font-size: 13px;
}

#msform input:focus, #msform textarea:focus {
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	border: 1px solid #ee0979;
	outline-width: 0;
	transition: All 0.5s ease-in;
	-webkit-transition: All 0.5s ease-in;
	-moz-transition: All 0.5s ease-in;
	-o-transition: All 0.5s ease-in;
}

/*buttons*/
#msform .action-button {
	width: 100px;
	background: #4c9330;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 25px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}

#msform .action-button:hover, #msform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #ee0979;
}

/*ISSUE 3628*/
/*
   #sim-card-selection-frame {
                        position: fixed;
                     top: 10vh;
                        left: 20px;
                        width: 300px;
                        max-height: 60%;
                        overflow-y: auto;
  			 max-height: 60vh;
                        border: 2px solid #ccc;
                        padding: 20px;
                        border-radius: 10px;
                        background-color: #f9f9f9;
                        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                        z-index: 1000;
                        font-family: Arial, sans-serif;
                        display: none; 
                }

                .select-sim-btn {
                        padding: 10px 15px;
                        background-color: #007bff;
                        color: white;
                        border: 2px solid transparent;
                        border-radius: 5px;
                        cursor: pointer;
                        font-size: 14px;
                        transition: all 0.3s ease;
                }





.select-sim-btn:hover {
    color: #AAFF00;
    transform: scale(1.1);
}

#sim-card-list {
    list-style-type: decimal;
    padding-left: 15px;
    margin: 0;
}

#sim-card-list li {

    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    transition: all 0.3s ease;

}

#sim-card-list li:hover {
    background-color: #f1f1f1;
    border-color: #007bff;
}

@media (max-width: 768px) {
   #sim-card-selection-frame .frame-title {
 position:absolute; 
	bottom: 10px; 
  left: 0;
  width: 100%;
  text-align: center; 
}
*/

#sim-card-selection-frame {
    position: fixed;
	/*position: absolute !important;*/
    top: 10vh;
    left: 20px;
    width: 300px;
    max-height: 60vh; /* Ensuring it doesn't exceed screen height */
    overflow-y: auto;
    border: 2px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-family: Arial, sans-serif;
    display: none;

    display: flex;         /* Enable flexbox */
    flex-direction: column; /* Stack elements vertically */
}

#sim-card-list {
    list-style-type: decimal;
    padding-left: 15px;
    margin: 0;
    flex-grow: 1; /* Let the list take up available space */
    overflow-y: auto; /* Allow scrolling for long lists */
}

#sim-card-list li {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    transition: all 0.3s ease;
}

#sim-card-list li:hover {
    background-color: #f1f1f1;
    border-color: #007bff;
}

/* Ensures "Select a esim" is always at the bottom */
.frame-title {
    padding: 10px;
    background-color: #f1f1f1;
    text-align: center;
    font-weight: bold;
    border-top: 2px solid #ccc;
    margin-top: auto; /* Pushes it to the bottom */
}
/*
@media (max-width: 768px) {
    #sim-card-selection-frame {
        width: 90%;
        left: 5%;
    }
}
*/

@media (max-width: 768px) {
    #sim-card-selection-frame {
        position: absolute;
        bottom: calc(100% + 10px); /* Places it just above the input field with spacing */
        left: 0;
        width: 100%;
	min-height: 30vh;
        max-height: 40vh; /* Prevents it from taking too much space */
        overflow-y: auto;
		-webkit-overflow-scrolling: touch;
    }

    #msform {
        position: relative; /* Ensures #sim-card-selection-frame is positioned relative to the form */
    }

    #msform fieldset {
        position: relative; /* Keeps it in normal flow */
        z-index: 10; /* Ensures it's above other elements */
    }
}


/*
 #sim-card-selection-frame {
        width: 90%;
        left: 2.5%;
        top: 20%;
        height: 300px;
	padding: 20px 20px 10px;
	overflow-y:auto;
	position:absolute;
    }

        #sim-card-list li {
        font-size: 1rem;
    }
}

*/
/*
#sim-card-selection-frame {
    width: 90%;
    left: 5%; 
   top: 20vh;
     height: 300px; 
    max-height: 50vh;    
transform: translateY(0);    
 padding: 15px;   }
*/

/* Styling for the progress bar container */
.progress {
    background-color: #e0e0e0;
    border-radius: 20px;
    height: 20px;
    width: 100%; /* Full width */
    box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
}

/* Styling for the progress bar itself */
.progress-bar {
    height: 100%;
    background-color: #4caf50; /* Green */
    border-radius: 20px;
    text-align: center;
    color: white;
    font-weight: bold;
    line-height: 20px;
    transition: width 0.5s ease-in-out; /* Smooth transition */
}

/* Custom styling for the progress text */
#progress-bar-text {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color : green;
}



#sim-card-list li.selected-sim-card {
    background-color: #669900 !important; /* Bright green background */
    color: #ffffff !important; /* Light pink text */
    padding: 10px; /* Optional: Add padding for appearance */
    border-radius: 5px; /* Optional: Rounded corners */
}


#msform .action-button-previous {
	width: 100px;
	background: #3f8d7c;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 25px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

/*headings*/
.fs-title {
	font-size: 18px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 10px;
	letter-spacing: 2px;
	font-weight: bold;
}

.fs-subtitle {
	font-weight: bolder;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}

#progressbar li {
	list-style-type: none;
	color: black;
	text-transform: uppercase;
	font-size: 9px;
	width: 33.33%;
	float: left;
	position: relative;
	letter-spacing: 1px;
}

#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 24px;
	height: 24px;
	line-height: 26px;
	display: block;
	font-size: 12px;
	color: #333;
	background: white;
	border-radius: 25px;
	margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
	background: #318438;
	color: white;
}


/* Not relevant to this form */
.dme_link {
	margin-top: 30px;
	text-align: center;
}
.dme_link a {
	background: #FFF;
	font-weight: bold;
	color: #ee0979;
	border: 0 none;
	border-radius: 25px;
	cursor: pointer;
	padding: 5px 25px;
	font-size: 12px;
}

.dme_link a:hover, .dme_link a:focus {
	background: #C5C5F1;
	text-decoration: none;
}
.thumb-image{
	float:right;width:100px;
	position:relative;
	/*padding:5px;*/
   }


   #loading-img {
	   background: url(Velocity.gif) center center no-repeat;
	   height: 100%;
	   z-index: 20;
    }

    .overlay {
	    position: fixed;
	    display: none;
	    width: 100%;
	    height: 100%;
	    top: 0;
	    left: 0;
	    right: 0;
	    bottom: 0;
	    background-color: rgba(0,0,0,0.5);
	    z-index: 2;
	    cursor: pointer;

      }







      #image_c_visa,#image_c_pass2,#image_c_pass1 {
	      display: none; 
	      float:right;width:100px;
	      position:relative;
	      /* padding:5px;*/
	      vertical-align: middle;
	      border: 1px solid rgba(0,0,0,0.2);
	      border-radius: 2px;
   }


#cann {
width:100%;
height:100%;

}

#close-video-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0000;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
    z-index: 10000; /* Ensure it remains above the video */
}

.new-image{

	width:90%;
	float:none;

}

#show_container,canvas{
	width:100%;

}


.hiding{
	display: none;
}


.loader {
	border: 6px solid #f3f3f3;
	border-radius: 50%;
	border-top: 6px solid rgb(173, 232, 236);
	width: 50px;
	height: 50px;
	animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
  }


  @media screen and (min-width: 768px) {
    .custom-swal-popup {
        width: 700px; 
    }
}

.swal2-confirm-btn,.swal2-cancel-btn{
	font-size: 12px !important;
	width: 80px !important;
}/*
.navbar {
  background: #f2f2f2;
  padding: 0.5rem 2.2rem;
  display: flex;
  justify-content: flex-end;  align-items: center;
  gap: 0.5rem;
  max-width: 300px;
  margin-left: auto; }

    .navbar label {
      font-size: 13px;
      color: #333;
      white-space: nowrap;
    }

    .navbar select {
      font-size: 13px;
      padding: 0.25rem 0.5rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      background: #fff;
      color: #333;
    }
*/

:root {
  /* Navbar theming */
  --nav-bg: #ffffff;
  --nav-accent: #0077cc;
  --nav-text: #333333;
  --nav-hover-bg: #f0f8ff;
  --nav-shadow: rgba(0, 0, 0, 0.1);
  --nav-radius: 8px;
  --nav-gap: 1rem;

  /* Dropdown-specific */
  --dropdown-border: #ccc;
  --dropdown-hover-bg: #f9f9f9;
/*  --dropdown-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23333' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") no-repeat right 1rem center;*/
--dropdown-arrow: url("./arrow.svg") no-repeat right 1rem center;
}



.navbar {
    background: #f2f2f2;
    padding: 0.5rem 2.2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    max-width: 600px;
    margin-left: auto;
}

@media (min-width: 768px) {
    .navbar {
        border-radius: 4px;
    }

}

.navbar select {
  /* remove native arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* sizing & layout */
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  font-size: 0.95rem;
  line-height: 1.2;

  /* colors & borders */
  background: var(--nav-bg) var(--dropdown-arrow);
  border: 2px solid var(--dropdown-border);
  border-radius: var(--nav-radius);
  color: var(--nav-text);

  /* transitions */
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;

  /* no shrink or wrap */
  flex-shrink: 0;
  white-space: nowrap;
  margin: 0; /* gaps handled by .navbar gap */
}

.navbar select:hover {
  background-color: var(--dropdown-hover-bg);
  border-color: var(--nav-accent);
}

.navbar select:focus {
  outline: none;
  border-color: var(--nav-accent);
  box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.25);
}

#language-selector {
  font-size: 1rem;
}

.red{
color:red;
}
.green{
color:green;
}
 
