:root {
  --ais-primary-color: #000000;
  --ais-text-color: #000000;
  --ais-white-color: #FFFFFF;
  --ais-title-color: #000000;
  --ais-red-color: #FF5F5F;
  --ais-gray-border: #E6E5EB;
  --transition: all 0.3s;
}

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
    font-family: "Poppins", sans-serif;
    outline: none;
}

body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: var(--ais-text-color);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0px;
  font-style: normal;
  background-color: #fff;
}

a,
a:hover,
a:focus,
button,
button:hover {
  color: var(--ais-primary-color);
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

svg,
svg path {
  -webkit-transition: var(--ais-primary-color);
  -moz-transition: var(--ais-primary-color);
  -ms-transition: var(--ais-primary-color);
  -o-transition: var(--ais-primary-color);
  transition: var(--ais-primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

img {
  max-width: 100%;
}

.d-none {
  display: none !important;
}

ul,
p {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

iframe {
  width: 100%;
  border: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #f5f7ff inset !important;
}

input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px #fff inset !important;
}

/*=============================
  Cusotom CSS Style
=============================*/



/*=============================
  Cusotom Common Widget Style
=============================*/



/*Link Styles*/

.df_link{
  color: var(--ais-primary-color);
}

.ais_font_regular {
	font-weight:400 !important;
}
.ais_font_semibold {
	font-weight:600 !important;
}
 

.hover_underline:hover{
  text-decoration: underline !important;
}
.ais_link{
  color: var(--ais-primary-color);
}

/*Mobile & Desktop Show Hide Styles*/

.wb_mob_show{
  display: none;
}

.ais_cursor_default{
  cursor: default !important;
}

/*=============================
ScrollBar Style
=============================*/

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 0px;
}

*::-webkit-scrollbar-thumb {
  background-color: #e4e4e7;
  border-radius: 0px;
}


/*=============================
  Spinner Style
=============================*/

.Spinner {
  width: 16px;
  height: 16px;
  border: 3px solid var(--ais-primary-color);
  border-bottom-color: #0000;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation_spin 1s linear infinite;
  }

@keyframes rotation_spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
} 

/*For Button Style*/
.ais_btn .ais-custom-spinner {
  width: 15px;
  height: 15px;
  border: 2px solid var(--ais-white-color);
  border-bottom-color: #0000;
}
.ais_btn.transparent_btn .ais-custom-spinner {
  border: 2px solid var(--ais-primary-color) !important;
}
.ais_btn.gray_btn .ais-custom-spinner {
  border: 2px solid var(--ais-primary-color) !important;
}
.ais_btn.gray_btn:hover .ais-custom-spinner {
  border: 2px solid var(--ais-white-color) !important;
}
.ais_btn.ais_red_shades .ais-custom-spinner {
  border: 2px solid var(--ais-white-color) !important;
  border-bottom-color: #0000 !important;
}

/*=============================
Basic magin Style
=============================*/

.ais_cursor_not_allowed{
  cursor: not-allowed !important;
}


/*=============================
Button Style
=============================*/

.ais_btn {
  height: 44px;
  border-radius: 5px;
  line-height: 44px;
  font-size: 14px;
  letter-spacing: -0.1px;
  color: var(--ais-white-color);
  font-weight: 500;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background-color: var(--ais-title-color);
  position: relative;
  border: 0;
  z-index: 1;
  transition: 0.3s all;
  /* overflow: hidden; */
}

/*Disable Button Style*/
.ais_btn.ais_disable_btn {
  background-color: #F7F7F7;
  color: #E3E3E3;
  cursor: not-allowed;
  user-select: none;
}
.ais_btn.ais_disable_btn .ais_btn_icon svg path{
  stroke: #E3E3E3;
}

.ais_btn.ais_disable_btn:hover{
  background-color: #F7F7F7;
  color: #E3E3E3;
  cursor: not-allowed;
}
.ais_btn.ais_disable_btn:hover .ais_btn_icon svg path{
  stroke: #E3E3E3;
}

.ais_btn.ais_fullWidth {
  display: flex;
  width: 100%;
}

.ais_btn:hover {
  background-color: #3f3f46;
  color: var(--ais-white-color);
}

/* .ais_btn:active {
  transform: scale(0.95);
} */

.ais_btn:focus {
  border: 0;
  color: var(--ais-white-color);
  outline: none !important;
}

.ais_radius_12{
  border-radius: 12px !important;
}


.ais_btn_icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ais_btn_icon svg {
  width: 20px;
  height: 20px;
}

/*Single Button Icon Style*/

.ais_btn.ais_icon_button {
  height: 26px;
  line-height: 26px;
  width: 26px;
  padding: 0;
}
.ais_btn.ais_icon_button .ais_icon_btn_card{
  height: 26px;
  line-height: 26px;
  width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ais_btn.ais_icon_button.ais_white_shades {
  background-color: var(--ais-white-color);
}
.ais_btn.ais_icon_button.ais_white_shades:hover {
  background-color: var(--ais-primary-color);
}
.ais_btn.ais_icon_button.ais_white_shades:hover .ais_icon_btn_card svg path{
  stroke: var(--ais-white-color);
}
.ais_btn.ais_icon_button.ais_white_shades.ais_cursor_not_allowed:hover{
  background-color: #fff;
}
.ais_btn.ais_icon_button.ais_white_shades.ais_cursor_not_allowed:hover .ais_icon_btn_card svg path{
  stroke: #000000;
}
.ais_btn.ais_icon_button.ais_white_shades.ais_cursor_not_allowed .ais_icon_btn_card {
  cursor: not-allowed;
}

.ais_feild_assets_actions .ais_btn.ais_icon_button .ais_icon_btn_card svg {
  transform: rotate(90deg);
  width: 22px;
  height: 22px;
}

/*Color Shades Of Buttons Style*/

.ais_btn.ais_purple {
  background-color: var(--ais-primary-color);
}

.ais_btn.ais_purple:hover {
  background-color: var(--ais-primary-color);
}

.ais_btn_list_wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ais_btn.btn_small {
  height: 28px;
  line-height: 28px;
  font-style: normal;
  font-size: 12px;
  text-align: center;
}

/*Transparent Button Style*/

.ais_btn.transparent_btn {
  background-color: #FFFFFF;
  border: 1px solid #e4e4e7;
  outline: none !important;
  color: var(--ais-title-color);
  box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
  border-radius: 6px;
}
.ais_btn.transparent_btn:hover {
  background-color: #f4f4f5;
  border: 1px solid #e4e4e7;
  outline: none !important;
}
.ais_btn.transparent_btn:hover .ais_btn_icon svg path{
  stroke: var(--ais-title-color);
}
.ais_btn.transparent_btn .ais_btn_icon svg path{
    stroke: #000000;
}

/*Gray Button Style*/

.ais_btn.gray_btn {
  background-color: #F7F7F7;
  border: 1px solid #F7F7F7;
  color: var(--ais-title-color);
}
.ais_btn.gray_btn:hover {
  border: 1px solid #3f3f46;
  background-color: #3f3f46;
  color: var(--ais-white-color) !important;
}
.ais_btn.gray_btn:hover .ais_btn_icon svg path{
  stroke: var(--ais-white-color);
}
.ais_btn.gray_btn .ais_btn_icon svg path{
    stroke: #000000;
}

/*light green Button Style*/

.ais_btn.light_green{
  background-color: #F2FFC2;
  color: var(--ais-title-color);
}
.ais_btn.light_green .ais_btn_icon svg path{
  stroke: #000000;
}
.ais_btn.light_green:hover {
  background-color: #F2FFC2;
  color: var(--ais-title-color);
}
.ais_btn.light_green:hover .ais_btn_icon svg path{
  stroke: #000000;
}

/*light green Button Style*/

.ais_btn.magic_mint{
  background-color: #B9FFC2;
  color: var(--ais-title-color);
}
.ais_btn.magic_mint .ais_btn_icon svg path{
  stroke: #000000;
}
.ais_btn.magic_mint:hover {
  background-color: #B9FFC2;
  color: var(--ais-title-color);
}
.ais_btn.magic_mint:hover .ais_btn_icon svg path{
  stroke: #000000;
}

/*Red Shades Button Style*/

.ais_btn.ais_red_shades {
  background-color: #FF0033;
  color: var(--ais-white-color);
}
.ais_btn.ais_red_shades:hover {
  background-color: rgb(255 0 51 / 80%) !important;
}


/*Single Icon Button Style*/

.ais_single_icon_btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 5px;
  width: 28px;
  min-width: 28px;
  height: 28px;
  background: #F5F5F6;
  border-radius: 10px;
}

.ais_single_icon_btn.gray_shades {
  background: #F5F5F6;
}

/*Disable Button Style*/

.ais_btn.disable_btn{
  background-color: #EFEFEF;
  color: #B6B6B6;
  cursor: not-allowed;
}
.ais_btn.disable_btn:hover{
  background-color: #EFEFEF;
  color: #B6B6B6;
}




/*=============================
  Input Style
=============================*/

.ais_main_input {
  position: relative;
}

.ais_main_input .ais_input_label {
  display: inline-block;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.1px;
  color: var(--ais-title-color);
  margin-bottom: 10px;
}

.ais_main_input .ais_custom_input {
  width: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-align: left;
  letter-spacing: 0em;
  padding: 10px 12px;
  height: 44px;
  background: #FFFFFF;
  border: 2px solid #EFEFEF;
  border-radius: 12px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 44px;
  color: var(--ais-text-color);
}

.ais_main_input .ais_custom_input::placeholder {
  color: #B6B6B6;
}

.ais_main_input .ais_custom_input:focus {
  border: 2px solid var(--ais-title-color);
}

.ais_input_card {
  position: relative;
}

.ais_input_act_icon {
  display: flex;
  align-items: center;
  width: 20px;
  height: 20px; 
  position: absolute;
  z-index: 55;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
}

.ais_main_input .ais_input_card .ais_custom_input{
  padding: 10px 35px 10px 12px;
}


/*Textarea Area Style*/

.ais_main_input textarea{
  width: 100%;
  background: #FFFFFF;
  border: 2px solid #EFEFEF;
  padding: 15px 20px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ais-text-color);
  border-radius: 12px;
  height: 135px;
}
.ais_main_input .dashed_border{
  border: 2px dashed #C0C0C0;
}

.ais_main_input textarea::-webkit-scrollbar-track{
  background-color: #f3f4f6; 
}
.ais_main_input textarea::-webkit-scrollbar-thumb{
  background-color: #e7e7e7;
}


.ais_main_input textarea::placeholder{
  color: #95959599;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0em;
}



/*Common Input Style*/

.ais_input_wrapper {
	position: relative;
	margin-bottom: 20px;
}

.ais_input_wrapper .ais_custom_input {
  width: 100%;
  line-height: 36px;
  text-align: left;
  letter-spacing: 0em;
  background: #fff;
  transition: var(--transition);
  position: relative;
  padding: 0px 12px;
  height: 36px;
  border: 1px solid #E6E5EB;
  outline: 1px solid #fff;
  box-shadow: 0px 6px 1px -5px rgba(0, 0, 0, 0.02);
  border-radius: 5px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}

.ais_input_wrapper .ais_custom_input::placeholder {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  color: #D1D1D1;
}

.ais_input_wrapper .ais_custom_input:focus {
	border: 1px solid var(--ais-primary-color);
  outline: 1px solid var(--ais-primary-color);
}

.ais_input_wrapper .ais_input_label {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 10px;
}



/*Spinner Loader Style*/

.ais-spinner-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  width: 24px;
  height: 24px;
}

.ais-custom-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid var(--ais-primary-color);
  border-bottom-color: #0000;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation_spin 1s linear infinite;
  }

  @keyframes rotation_spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
  } 

.ais_text_underline {
  text-decoration: underline !important;
}
.semi-bold {
  font-weight: 500 !important;
}


/*Mobile & Desktop Show Hide Styles*/

.ais_mob_show{
  display: none !important;
}




/*Go Back Button Style*/

.ais_full_width_center{
  text-align: center;
  margin-top: 20px;
}
a.ais_go_back_card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.ais_go_back_card .ais_go_back_text {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  letter-spacing: -0.1px;
  text-decoration-line: underline;
  color: #000000;
}



/*Auth Pages Style*/

.ais_auth_main {
  /* min-height: 100vh; */
  min-height: 100dvh;
  position: relative;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  overflow: auto;
}

.ais_auth_main .ais_auth_inner_wrapper{
  min-height: 100dvh;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: auto;
  flex-direction: column;
  padding: 45px 0;
}
.ais_auth_main .ais_auth_inner_wrapper .ais_auth_top_content_wrappr{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 85px;
}
.ais_auth_logo .ais_auth_logo_icon{
  width: 163px;
}
.ais_auth_title_wrapper {
  margin-bottom: 30px;
  position: relative;
}
.ais_auth_title{
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  text-align: center;
  color: #000000;
  margin-bottom: 8px;
}
.ais_small_size_title{
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  letter-spacing: -0.1px;
  color: #000000;
}

/**/
.ais_auth_input_wrapper{
  position: relative;
  margin-bottom: 8px;
}

.ais_auth_input {
  position: relative;
  margin-bottom: 8px;
}
.ais_auth_input input {
  width: 100%;
  line-height: 44px;
  text-align: left;
  letter-spacing: 0em;
  background: #fff;
  transition: none;
  position: relative;
  padding: 0px 12px;
  height: 44px;
  border: 1px solid #E6E5EB;
  outline: 1px solid #fff;
  border-radius: 5px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  box-shadow: 0px 6px 1px -5px rgba(0, 0, 0, 0.02);
}

.ais_auth_input input::placeholder {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  color: #D1D1D1;
}

.ais_auth_input input:focus {
	border: 1px solid var(--ais-primary-color);
  outline: 1px solid var(--ais-primary-color);
}


.ais_auth_link_wrapper {
  position: relative;
  margin: 15px 0;
}
.ais_auth_content_link {
  position: relative;
  margin: 15px 0;
}
.ais_separator_card {
  position: relative;
  display: block;
  margin: 25px 0;
}
.ais_separator_card .ais_separator {
  background-color: #F3F4F6;
  height: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.ais_link {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  letter-spacing: -0.1px;
  color: #000000;
}
.ais_auth_content_link p{
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.1px;
  color: #000000;
}

.ais_auth_menu {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  gap: 30px;
  margin-top: 10px;
}
.ais_auth_menu li .ais_link{
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.1px;
  color: #000000;
  transition: 0.3s all;
}
.ais_auth_menu li .ais_link:hover{
 text-decoration: underline;
}

.ais_auth_main .ais_auth_inner_wrapper .ais_auth_details_wrapper {
  position: relative;
  width: 330px;
}

.ais_input_alert_wrapper {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-top: 8px;
}
.ais_input_alert_wrapper .alert_msg{
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: #FF4848;
}

.ais_auth_input.ais_show_alert input{
  border: 1px solid #FF4848;
  outline: 1px solid #FF4848;
}

/*Notifications Style*/

.ais_notfication_wrapper {
  padding: 13px;
  position: absolute;
  max-width: 388px;
  border: 1px solid #E6E5EB !important;
  outline: 1px solid transparent !important;
  border-radius: 5px;
  top: 40px;
  right: -500px;
  background-color: #fff;
  z-index: 99999999;
  transition: all 0.3s ease-in-out;
  display: none;
}
.ais_notfication_wrapper.ais_notfication_in{
  right: 40px;
  display: flex;
}


.ais_notfication_wrapper .ais_notfication_inner_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  width: 100%;
}
.ais_notfication_wrapper p {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: #000000;
  padding-right: 30px;
}
.ais_notfication_wrapper .ais_notfication_close{
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: -0.6px !important;
}

/*Sign up Page  Style*/

.ais_auth_main .ais_auth_inner_wrapper.ais_sign_up_page .ais_auth_details_wrapper {
  width: auto;
}

/**/
.ais_auth_middle_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 50px;
  width: 820px;
}
.ais_testimonial_content_wrapper{
  margin-bottom: 16px;
}
.ais_testimonial_header{
  display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
 .ais_testimonial_content_wrapper .ais_testimonial_header .ais_testimonial_user_img {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ais_testimonial_content_wrapper .ais_testimonial_header .ais_testimonial_user_img img {
  max-width: 34px;
  min-width: 34px;
  max-height: 34px;
  min-height: 34px;
  border-radius: 100%;
  object-fit: cover;
}
.ais_testimonial_content_wrapper .ais_testimonial_header .ais_tm_user_details {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
}
.ais_testimonial_content_wrapper .ais_testimonial_header .ais_tm_user_details h6 .user_icon {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ais_testimonial_content_wrapper .ais_testimonial_header .ais_tm_user_details h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ais_testimonial_content_wrapper .ais_testimonial_header .ais_tm_user_details .reting_thumb {
  width: 70px;
  height: 14px;
  object-fit: cover;
}

 .ais_testimonial_content_wrapper .ais_tm_user_msg_wrapper {
  padding: 10px 14px;
  background: #F8F8F8;
  border-radius: 6px;
}
 .ais_testimonial_content_wrapper .ais_tm_user_msg_wrapper .ais_view_details {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  color: #141414;
  margin-bottom: 4px;
}
.ais_testimonial_content_wrapper .ais_tm_user_msg_wrapper .ais_user_msg {
  font-style: normal;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.4;
  color: #212121;
  margin-bottom: 0;
}

/*Brand Section Style*/

.ais_brand_section {
  position: relative;
  width: 1015px;
  margin: 0 auto 50px auto;
}
.ais_brand_section .ais_section_title h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.4;
  text-align: center;
  color: #000000;
}

.ais_brand_section .ais_section_title {
  text-align: center;
  width: 100%;
  margin-bottom: 25px;
}

.ais_brand_section .ais_brand_logo_list {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ais_brand_section .ais_brand_logo_list img{
  display: none;
}

.ais_brand_section .ais_brand_logo_list .ais_brand_logo_card {
  height: 40px;
  background: url(https://app2-stage.breakoutclips.com/assets/images/auths/brand-slide-bg.svg) no-repeat;
  background-size: 320px 800px;
}

.ais_brand_section .ais_disney__brand {
  width: 94px;
  background-position: 0 -40px !important;
}
.ais_brand_section .ais_disney__brand:hover {
  background-position: 0 -400px !important;
}

.ais_brand_section .ais_marvel__brand {
  width: 72px;
  background-position: 0 -80px !important;
}
.ais_brand_section .ais_marvel__brand:hover {
  background-position: 0 -440px !important;
}

.ais_brand_section .ais_redbull__brand {
  width: 108px;
  background-position: 0 -120px !important;
}
.ais_brand_section .ais_redbull__brand:hover {
  background-position: 0 -480px !important;
}

.ais_brand_section .ais_twitter__brand  {
  width: 96px;
  background-position: 0 -160px !important;
}
.ais_brand_section .ais_twitter__brand:hover {
  background-position: 0 -520px !important;
}

.ais_brand_section .ais_loreal__brand  {
  width: 96px;
  background-position: 0 -200px !important;
}
.ais_brand_section .ais_loreal__brand:hover {
  background-position: 0 -560px !important;
}

.ais_brand_section .ais_seattle__brand  {
  width: 107px;
  background-position: 0 -240px !important;
}
.ais_brand_section .ais_seattle__brand:hover {
  background-position: 0 -600px !important;
}

.ais_brand_section .ais_ae__brand  {
  width: 84px;
  background-position: 0 -280px !important;
}
.ais_brand_section .ais_ae__brand:hover {
  background-position: 0 -640px !important;
}

.ais_brand_section .ais_lego__brand  {
  width: 72px;
  background-position: 0 -320px !important;
}
.ais_brand_section .ais_lego__brand:hover {
  background-position: 0 -680px !important;
}

.ais_brand_section .ais_wb__brand  {
  width: 110px;
  background-position: 0 -360px !important;
}
.ais_brand_section .ais_wb__brand:hover {
  background-position: 0 -720px !important;
}


/*User Verification Page Style*/
.ais_auth_main .ais_auth_inner_wrapper.ais_verification_page .ais_auth_top_content_wrappr{
 width: 100%;
}
.ais_auth_main .ais_auth_inner_wrapper.ais_verification_page .ais_auth_top_content_wrappr{
  width: 100%;
 }
 .ais_auth_main .ais_auth_inner_wrapper.ais_verification_page .ais_auth_top_content_wrappr .ais_auth_details_wrapper {
  width: 100%;
}
.ais_auth_main .ais_auth_inner_wrapper.ais_verification_page .ais_verification_details_wrapper{
  width: 320px;
  margin: 0 auto;
}

.ais_link.ais_disable_link {
  color: #D1D1D1 !important;
  cursor: not-allowed !important;
}

.wba_auth_footer {
  text-align: center;
}
.wba_auth_footer > p{
 font-weight: 300;
}
.wba_auth_footer .ais_auth_menu li .ais_link{
  font-weight: 300;
}

/*Re Captcha Style*/
div#ved_recaptcha_wrap {
  margin-bottom: 6px !important;
}

/*login Page Changes */
.ais_auth_main .ais_auth_inner_wrapper.ais_login_page{
  gap: 20px;
}

.ais_auth_main .ais_auth_inner_wrapper.ais_sign_up_page {
  gap: 40px;
}

.ais_auth_main .ais_auth_inner_wrapper.ais_sign_up_page .ais_auth_middle_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 85px;
}
.ais_gif_wrapper {
  position: relative;
  width: 100%;
}
.ais_gif_wrapper video {
  width: 320px;
}

.ais_brand_logo_list.aisHideMobile {
    display: flex !important;
}

/**/
.ais_notfication_wrapper  .ais_notfication_inner_container .link_underline {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: -0.1px;
    text-align: center;
    color: #000 !important;
    text-decoration: underline !important;
}



/*Responsive*/

@media (max-width:991px) {
  .ais_brand_logo_list.aisHideMobile {
      display: none !important;
  }
  .ais_static_brand_logo_list.aisShowMobile {
    display: flex !important;
  }
 /*Sign Up Page Style*/
 .ais_auth_inner_wrapper.ais_sign_up_page .ais_auth_middle_grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 10px;
  width: 100%;
}
.ais_auth_main .ais_auth_inner_wrapper.ais_sign_up_page .ais_auth_middle_wrapper {
  gap: 15px;
}
.ais_auth_inner_wrapper.ais_sign_up_page .ais_brand_section {
  width: 100%;
}
.ais_auth_inner_wrapper.ais_sign_up_page  .ais_brand_section .ais_brand_logo_list {
  flex-wrap: wrap;
  justify-content: center;
}
/* .ais_auth_inner_wrapper.ais_sign_up_page  .ais_brand_section .ais_brand_logo_list .ais_brand_logo_card{
  max-width: 90px;
} */
.ais_auth_inner_wrapper.ais_sign_up_page  .ais_brand_section .ais_brand_logo_list .ais_brand_logo_card img{
  max-width: 100%;
}
.ais_auth_inner_wrapper.ais_sign_up_page {
  padding: 30px;
  max-width: 575px;
  margin: 0 auto;
}

/*Brand Module Static Section Style*/


.ais_brand_section .ais_section_title {
  margin-bottom: 16px;
}

.ais_static_brand_logo_list {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}


}

@media (min-width:767px) {

/*Button Animation Effects Style */

.ais_active_anim_effect::before{
  --size: 0;
  content: '';
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: -o-radial-gradient(center,circle,rgba(140, 100, 255,.8) 0,rgba(140, 100, 255,0) 50%) no-repeat;
  background: radial-gradient(circle at center,rgba(140, 100, 255,.8) 0,rgba(140, 100, 255,0) 50%) no-repeat;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: width 0.2s ease, height 0.2s ease, left 0.25s linear, top 0.25s linear;
  -o-transition: width 0.2s ease, height 0.2s ease, left 0.25s linear, top 0.25s linear;
  transition: width 0.2s ease, height 0.2s ease, left 0.25s linear, top 0.25s linear;
  z-index: -1;
}
.ais_btn.ais_active_anim_effect {
  overflow: hidden !important;
  -webkit-transition: all .15s linear;
  -o-transition: all .15s linear;
  transition: all .15s linear;
}
.ais_btn.ais_active_anim_effect:hover {
  background-image: -webkit-gradient(linear, left bottom, right top, from(#140eb4), color-stop(#3810c2), color-stop(#5111d0), color-stop(#6812de), to(#7e12eb)) !important;
  background-image: -o-linear-gradient(left bottom, #140eb4, #3810c2, #5111d0, #6812de, #7e12eb) !important;
  background-image: linear-gradient(to right top, #140eb4, #3810c2, #5111d0, #6812de, #7e12eb) !important;
}
    
.ais_btn.ais_active_anim_effect:hover:before {
   --size: 120px;
}
.ais_btn.ais_active_anim_effect:hover::before {
	width: var(--size);
  height: var(--size);
}
.ais_btn.ais_active_anim_effect.ais_disable_btn::before {
	display: none !important;
}
.ais_btn.ais_active_anim_effect.ais_disable_btn:hover {
  background-image: linear-gradient(to right top, #F7F7F7, #F7F7F7, #F7F7F7, #F7F7F7, #F7F7F7) !important;
}


/* .ais_btn.ais_active_anim_effect .ais_anim_btn_text {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
} */


.aisShowMobile{
  display: none !important;
}
.aisHideMobile{
  display: block !important;
}

/*Mobile Hover Style*/

  /*Common Input Compenent Style*/  
    .ais_auth_input input:hover {
      border: 1px solid var(--ais-primary-color);
      outline: 1px solid var(--ais-primary-color);
    }
    .ais_notfication_wrapper:hover{
      border: 1px solid var(--ais-primary-color) !important;
      outline: 1px solid var(--ais-primary-color) !important;
    }
}

@media (max-width:767px) {
  .ais_active_anim_effect::before{
    display: none !important;
  }

  .aisShowMobile{
    display: block !important;
  }
  .aisHideMobile{
    display: none !important;
  }

.ais_static_brand_logo_list.aisShowMobile {
    display: flex !important;
}

  .ais_auth_inner_wrapper.ais_verification_page .ais_gif_wrapper.mb-3 {
      margin-bottom: 5px !important;
  }
  .ais_auth_inner_wrapper.ais_verification_page .ais_auth_link_wrapper {
      margin: 10px 0;
  }
   /*Hover Style*/
  .ais_btn.gray_btn:hover {
      border: 1px solid #F7F7F7 !important;
      background-color: #F7F7F7 !important;
  }
  .ais_btn:hover {
      background-color: #000;
  }
  .ais_btn.transparent_btn:hover {
      background-color: #FFFFFF;
      border: 1px solid #e4e4e7;
      outline: none !important;
  }
  .ais_auth_main .ais_auth_inner_wrapper .ais_auth_content_link p{
    font-weight: 400;
  }
  .ais_brand_section .ais_brand_logo_list {
    gap: 24px;
}
  .ais_brand_section .ais_section_title {
    margin-bottom: 16px;
}
  .ais_brand_section .ais_section_title h3{
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.1px;
  }
  .ais_mob_mb_0{
    margin-bottom: 0 !important;
  }
  .ais_auth_main .ais_auth_inner_wrapper.ais_sign_up_page .ais_auth_middle_wrapper{
    gap: 0;
  }
  .ais_brand_section {
    margin: 60px auto 0 auto;
}
  .ais_auth_main .ais_auth_inner_wrapper.ais_sign_up_page .ais_auth_content_link {
      margin: 10px 0;
  }
  .ais_auth_main .ais_auth_inner_wrapper.ais_sign_up_page{
    gap: 60px;
    justify-content: space-between;
  }
  .ais_auth_inner_wrapper.ais_sign_up_page .ais_auth_top_logo_wrapper {
      position: relative;
      top: unset;
      left: unset;
      transform: translate(0, 0);
  }
 
  .ais_auth_inner_wrapper.ais_f_p_page .ais_auth_link_wrapper {
      margin: 10px 0 0 0;
  }
  .ais_auth_logo .ais_auth_logo_icon {
    width: 122px;
    height: 24px;
    object-fit: contain;
  }
  .ais_auth_inner_wrapper.ais_login_page .ais_auth_content_link.ais_signup_link {
      margin: 0;
  }
  .ais_auth_inner_wrapper.ais_login_page .ais_auth_link_wrapper.ais_frgt_link{
    margin: 10px 0;
  }
  .ais_auth_inner_wrapper.ais_login_page .ais_auth_link_wrapper.ais_frgt_link a{
    font-weight: 500 !important;
    text-decoration: underline;
  }
  .ais_auth_inner_wrapper.ais_login_page .ais_auth_link_wrapper {
    margin: 10px 0;
  }
  .ais_input_alert_wrapper {
    gap: 4px;
    margin-top: 8px;
  }
  
  .ais_auth_main .ais_auth_top_logo_wrapper {
      position: fixed;
      top: 24px;
      left: 50%;
      transform: translate(-50%, 0);
  }
  
  .ais_auth_main.ais_stable_height .ais_auth_top_logo_wrapper {
    position: relative;
    top: unset;
    left: unset;
    transform: translate(0, 0);
}
  .ais_auth_inner_wrapper .wba_auth_footer{
    display: none;
  }
  .ais_auth_main .ais_auth_inner_wrapper {
    justify-content: center;
}
  .ais_mob_hide{
    display: none !important;
  }
  .ais_auth_title {
      font-size: 26px;
      margin-bottom: 6px;
      line-height: 34px;
  }
  .ais_auth_title_wrapper .ais_small_size_title{
    font-weight: 500;
  }
  .ais_auth_main .ais_auth_inner_wrapper {
      padding: 30px;
  }
  .ais_auth_main .ais_auth_inner_wrapper.ais_login_page{
    gap: 40px;
  }
  .ais_auth_main .ais_auth_inner_wrapper .ais_auth_top_content_wrappr {
      gap: 25px;
  }

.ais_auth_title_wrapper {
  margin-bottom: 30px;
}
.ais_auth_input {
  margin-bottom: 10px;
}
.ais_separator_card {
  margin: 20px 0;
}
/* .ais_auth_inner_wrapper.ais_sign_up_page .ais_brand_section .ais_brand_logo_list .ais_brand_logo_card {
  max-width: 70px;
} */

.ais_notfication_wrapper {
  width: max-content;
  position: fixed;
}
.ais_notfication_wrapper.ais_notfication_in {
  right: unset;
  display: flex;
  transform: translate(-50%, 0);
  left: 50%;
}
.ais_notfication_wrapper.error{
  border: 1px solid #ff0000 !important;
  outline: 1px solid #ff0000 !important;
}
.ais_notfication_wrapper.success{
  border: 1px solid #b7e1d1 !important;
  outline: 1px solid #b7e1d1 !important;
}
}

@media (max-width:575px) {
  .ais_static_brand_logo_list {
    gap: 15px;
  }
  .ais_brand_section .ais_section_title h3{
    font-size: 13px;
  }
  .ais_auth_main .ais_auth_inner_wrapper .ais_auth_details_wrapper {
    width: 100%;
}
/* .ais_auth_inner_wrapper.ais_sign_up_page .ais_brand_section .ais_brand_logo_list{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 24px;
} */

.ais_auth_inner_wrapper.ais_sign_up_page .ais_auth_content_link p{
 font-size: 13px;
} 
.ais_auth_inner_wrapper.ais_sign_up_page .ais_auth_content_link p > a{
  font-size: 13px;
 } 
  .ais_brand_section .ais_brand_logo_list {
    gap: 10px;
  }
  .ais_auth_inner_wrapper.ais_sign_up_page .ais_auth_title_wrapper .ais_small_size_title {
    font-weight: 400;
    font-size: 15px;
}
}

@media (min-width: 425px) and (max-width: 575px) {
  .ais_auth_main .ais_auth_inner_wrapper {
      max-width: 425px;
      margin: 0 auto;
  }
  
}

@media (max-width:375px) {
  .ais_brand_section .ais_brand_logo_list {
      gap: 10px;
  }
  .ais_brand_section .ais_static_brand_logo_list {
    gap: 10px;
  }
}
