

/* Subscriber registration modal starts */

.subsriber_reg_container
{
  position: fixed;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  /* flex-direction: column; */
  padding: 10px;
  overflow-y: auto;
  background-color: var(--background_color);
  z-index: 1000;

  /* background-image: url('/frontend/assets/images/pattern_3.webp'); */
  background-image: url('/frontend/assets/images/pattern_4.avif');
  /* background-image: url('/frontend/assets/images/pattern_5.avif'); */
  /* background-image: url('/frontend/assets/images/pattern_background.jpg'); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 10px;
}


.subscriber_inner_wrapper
{
    width: 100%;
}


.subscriber_reg_box
{
  width: 100%;
  max-width: 700px;
  padding: 20px;
  border-radius: 10px;
  margin: auto; 

  /* background: #fff;
  box-shadow: 0 0 20px 5px #c7c7c7; */
  background: var(--background_light_shaded_dark);
  box-shadow: var(--shadow_color);
 
}

.subscriber_reg_box .form_input
{
  /* border: 1px solid var(--main_color) !important; */
  background: transparent !important;
}

.subscriber_reg_box.expand
{
  max-width: 1200px;
 
}



.subscriber_title
{
  margin-bottom: 30px;
  color: var(--main_color);
  text-align: center;
}

.subscriber_subtitle
{
  margin-bottom: 20px;
  text-align: center;
  font-size: 18px;
}

.subscriber_input_box
{
  margin-bottom: 20px;
  position: relative;
}

.subscriber_input_box .show_pass_icon
{
    position: absolute;
    right: 10px;
    bottom: 17px;
    font-size: 30px;
    color: var(--main_color);
}

.subscriber_input_box .show_pass_icon:hover
{
    cursor: pointer;
}

.password_input
{
    padding-right: 50px;
}

.form_btn
{
  background: var(--main_color);
  color: var(--background_color);
  font-weight: bold;
  padding: 20px 25px;
  color: #fff;
  font-size: 16px;
  border: 2px solid var(--main_color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s ease-in;
}

select
{
  border: 1px solid var(--color_shade5);
  padding: 23px 20px;
  border-radius: 10px;
}

.form_btn:hover
{
  background: var(--highlight_color2);
  border: 2px solid var(--highlight_color2);
  transition: .2s ease-in;
}

.form_btn:focus
{
  border: 2px solid var(--main_color);
}

.form_btn .button_icon
{
  margin-left: 10px;
}


.heroic_site_highlight
{
  color: #ff9900;
}

.heroic_color
{
  color: darkred;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 30px;
  background-color: var(--color_light);
  border: 2px solid #ff9900;
  font-size: 25px;
  /* box-shadow: 5px 5px 10px var(--shadow_color); */
  /* box-shadow: 5px 5px 10px rgb(205, 204, 204); */
}


.heroicsite_container
{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}


.subscriber_input_box label
{
  font-size: 16px;
}



@media only screen and (max-width: 440px)
{
  .subscriber_title
  {
    font-size: 30px;
  }

  .subscriber_subtitle
  {     
    font-size: 16px;
  }
}

/* .subscriber_form_container
{
  margin-bottom: 50px;
} */




.button_back_icon
{
  margin-right: 10px;
}



.subscriber_button_container
{
  /* display: flex;
  justify-content: space-between; */

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}


@media screen and (max-width: 600px)
{
  #update_site_container .subscriber_button_container
  {
    grid-template-columns: 1fr;
  }
}
  

.hidden_container
{
  display: none;
}


.hidden_container a 
{
    text-decoration: none;
}


.next_btn, .prev_btn
{
  color: white;
}


#last_prev
{
    border-radius: 20px;
    padding: 0 10px;
    display: flex;
    align-items: center;
}




.prev_btn, .show_btn, .create_site_btn
{
  color: var(--main_color) !important;
  border: 1px solid var(--main_color) !important;
  color: var(--main_color) !important;
  background-color: white !important;
  border: 1px solid var(--main_color) !important;
  text-decoration: none;
}


.option_section
{
    padding: 5px 10px;	
    border: 1px solid var(--color_shade4);
    border-radius: 50px;
    display: flex;
}

.option_section .inner_section
{
    flex: 1;
}

  .option_section .inner_section_img
  {
      min-width: 10px;
      height: 30px;
      overflow: hidden;
  }

  .option_section .inner_section_img img
  {
      height: 100%;
  }

  .inner_section label
  {
      font-weight: bold;
  }

.option_wrapper
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}


@media screen and (max-width: 620px)
{
  #subscriber_domain_form .option_wrapper
  {
    grid-template-columns: 1fr;
  }
}



/* ============== COLOR MODE ============== */

.color_mode_container
{
  display: grid;
  grid-template-columns: 1fr 1fr;   
  gap: 20px;
}

.color_mode_wrapper
{
  padding: 10px;
  border-top: 1px solid var(--card_bg);
  display: flex;
  justify-content: center;
  align-items: center;
}


#dark_btn, #light_btn
{
  background: none;
  border: 1px solid var(--text_color);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

#dark_btn ion-icon, #light_btn ion-icon
{
  color: var(--text_color);
  font-size: 20px;
}

.dark_mode_box, .light_mode_box
{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dark_mode_box span, .light_mode_box span
{
    color: var(--text_color);
    font-size: 9px;
}


.active_mode_btn ion-icon
{
    color: var(--button_fill_color) !important;
}

.active_mode_btn
{
   border: 1px solid var(--button_fill_color) !important;
}


/* ================= REG LOADING ================== */


.loading_box
{
  position: fixed;    
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1000;
}

.reg_overlay
{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .9;
}

.reg_load_box
{   
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;    
  width: 100%;
  height: 100%;
  
}







.footer_logo_container
{
   display: flex;
   flex-direction: column; 
   margin-bottom: 20px;
   /* align-items: center;   */
}

.footer_logo_container .text-heading
{
   font-weight: bold;
}

.footer_logo_link
{
  display: block;
  max-width: 80px;
  margin-bottom: 20px;
}

.footer_logo_link img
{
  object-fit: contain;
}


/* Success or failed message styles */

.message_container
{
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  
}

.success_message
{
  padding: 7px 14px;
  border-radius: 5px;
  background-color: rgb(205, 249, 210);
  border: 1px solid rgb(142, 231, 152);
  color: rgb(2, 91, 13);
  text-align: center;
  width: 100%;
  max-width: 700px;
  font-size: 18px;
  display: none;
}

.error_message
{
  padding: 7px 14px;
  border-radius: 5px;
  background-color: rgb(253, 226, 205);;
  border: 1px solid rgb(250, 206, 169);;
  color: rgb(149, 18, 1);
  text-align: center;
  width: 100%;
  max-width: 700px;
  font-size: 18px;
  display: none;
}

/* Success or failed message styles end */











/* CHECKBOX INPUT STYLES */


.option_label_wrap
{
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin-right: 10px;
    user-select: none;
    width: 100%;
    height: 100%;
}

.check_input
{
display: none;
}

.check_mark
{
width: 1.5em;
height: 1.5em;
border: 2px solid #fD6A02;
border-radius: 50%;
margin-right: 10px;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}

.check_color_mark
{
width: 30px;
height: 30px;
border-radius: 50%;
margin-right: 10px;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}




.check_mark::after
{
font-family: "Font Awesome 5 Free";
content: "\f00c";
width: 100%;
height: 100%;
display: block;
background: #fD6A02;
color: white;
border-radius: 50%;
transform: scale(0);
transition: transform 0.15s;
padding: 0 0 10px 3px;
}

.option_heading
{
margin-bottom: 10px;
margin-top: 20px;
border-bottom: 1px solid var(--color_shade4);
}

.list_title
{
font-weight: bold;
}

.check_input:checked + .check_mark::after
{
transform: scale(1);
}

.check_input:checked + .check_color_mark
{
border: 2px solid #fD6A02;
/* box-shadow: 3px 3px 5px var(--color_shade5); */
}

.highlighted_border
{
border: 1px solid #fD6A02;
box-shadow: 3px 3px 5px var(--color_shade5);
}

.congrats_button_container
{
display: flex;
flex-direction: column;
align-items: center;
}

.congrats_button_container a
{
color: gray;
margin-top: 50px;
}

.insert_btn_container
{
margin-bottom: 50px;
padding-bottom: 20px;
border-bottom: 1px solid var(--color_shade5);
display: flex;
justify-content: center;
}

/* RADIO INPUT STYLES */

.radio_container
{
  padding-bottom: 20px;
}


.radio_label_wrap
{
display: inline-flex;
align-items: center;
cursor: pointer;
margin-right: 10px;
user-select: none;
width: 100%;
height: 100%;
}

.radio_input
{
display: none;
}

.radio_radio
{
width: 1.5em;
height: 1.5em;
border: 2px solid #fD6A02;
border-radius: 50%;
margin-right: 10px;
box-sizing: border-box;
padding: 2px;
}

.radio_radio::after
{
content: "";
width: 100%;
height: 100%;
display: block;
background: #fD6A02;
border-radius: 50%;
transform: scale(0);
transition: transform 0.15s;
}

.radio_input:checked + .radio_radio::after
{
transform: scale(1);
}



.theme_card
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;

}

.theme_box
{
  overflow: hidden;
  border: 6px solid var(--color_light);
  border-radius: 10px;
  /* box-shadow: 0 0 10px 5px var(--color_shade4); */
  cursor: pointer;
  height: 0;
  padding-top: 50%;
  position: relative;
}

.theme_box img 
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  
}



.theme_box:focus-within
{
  overflow: hidden;
  border: 8px solid var(--main_color_shade2); 
  box-shadow: 0 0 10px 5px var(--main_color);
  cursor: pointer;
}

.theme_container
{
    /* background: var(--main_color) !important; */
    border-radius: 10px;
    /* padding: 10px; */
}

/* .theme_container h1
{
    color: #fff !important;
} */


@media only screen and (max-width: 600px)
{

  .theme_card
  {
    padding: 20px !important;
    gap: 20px;
    grid-template-columns: 1fr;
  }


  .theme_box
  {
    /* border: 2px solid var(--color_light); */
    border-radius: 10px;
   
  }


}

/* Subscriber registration modal ends */
