<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />

body {
}

a {color:#34483c; text-decoration:none; }
a:hover {color:#34483c; text-decoration:underline;}

.aisomatic-main-logo {max-width:300px; height:auto;}

.aisomatic-benefit {color:#55e286;}

.ais-body-element {
	border-radius:20px;
	background:#34483c; 
	color:#fff;
}
a.ais-link-white{color:#fff;}
a.ais-link-white:hover {color:#fff;}

.ais-bubble-icon {
	height:100px;
	width:100px; 
	background:#fff;
	border-radius:50%;
	color:#000;
	display: inline-flex; 
	justify-content: center; 
	align-items: center; 
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}
.ais-bubble-icon span {font-size:40px;}

.ais-bubble-logo {
	width: 50px;
    height: 50px;
}

/* site admin */
.ais-admin-bar {
	z-index: 10000;
    top: 20%;
    width: 55px;
    position: fixed;
    border-radius: 0 20px 20px 0;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	text-align:center;
	padding-top:15px;
	padding-bottom:15px;
}
.ais-admin-bar-logo{
	width: 47px;
    height: 47px;
}

.ais-admin-modal .modal-content {
	border: 1px solid #d6d6d6 !important;
	border-radius:20px !important;
	background:#34483c; 
	color:#fff;
}
.ais-admin-modal .modal-header {
	border-bottom:0;
}

.ais-interface-btn {
  width: 30px; 
  height: 30px;
  background-color: white; 
  border-radius: 50%; 
  border: 1px solid transparent;
  display: flex; 
  justify-content: center; 
  align-items: center; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 10px;
  transition: all 0.3s;
  z-index:100;
  text-shadow:none;
}

.ais-interface-btn:hover {
	background:#34483c;
	color:#fff;
}

.ais-interface-btn .material-symbols-outlined {
  color: black; 
  font-size: 18px; 
  transition: all 0.3s;
}

.ais-interface-btn:hover .material-symbols-outlined { color:#fff;}

/* aiseditor css */
.aiseditor-container {
	margin-bottom: 20px;
}
.aiseditor {
	border: 1px solid #ccc;
	padding: 10px;
	min-height: 200px;
	white-space: pre-wrap;
	background-color: #fff;
	color:#000;
}
.aiseditor-html {
    display: none;
	width:100%;
    border: 1px solid #ccc;
    padding: 10px;
    min-height: 200px;
    background-color: #fff;
}
.aiseditor-toolbar button {
	margin-right: 5px;
	padding: 5px 10px;
	cursor: pointer;
	background-color: #f0f0f0;
	border: 1px solid #ccc;
}
.aiseditor-toolbar button:hover {
	background-color: #e0e0e0;
}
.aiseditor p, 
.aiseditor a,
.aiseditor td {
  color:#000;
}

/* editable text fields */
ais-editable {
    position: relative; /* Needed for positioning the pseudo-element */
	cursor:pointer;
	display:inline-block;
}

ais-editable::after {
    content: 'edit'; /* Material Icons text */
    font-family: 'Material Symbols Outlined'; /* Material Icons font */
	font-size:18px;
	color:#000;
    position: absolute;
    width: 30px; 
    height: 30px;
    background-color: white; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index:100;
    text-shadow:none;
    visibility: hidden;
    /* Additional styling for the icon */
}

ais-editable:hover::after {
    visibility: visible; /* Show icon only on hover */
}

/* If you want to also change the opacity of the text on hover */
ais-editable:hover {
    opacity: 0.9; /* Adjust as needed */
}



/* site admin */
/* new section admin css */
.ais-section {position:relative;}
.ais-admin-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Hide by default */
	  border:2px solid #fff;
    z-index:12;
}

.ais-admin-overlay::after {
    content: 'edit'; /* Material Icons text */
    font-family: 'Material Symbols Outlined'; /* Material Icons font */
	font-size:22px;
	color:#000;
    position: absolute;
    width: 50px; 
    height: 50px;
    background-color: white; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index:100;
    text-shadow:none;
    /* Additional styling for the icon */
}

.ais-admin-overlay .ais-admin-controls {
    text-align: center;
}

.ais-section:hover .ais-admin-overlay {
    opacity: 1; /* Show when hovered */
}



/* ais-form-control equivalent to form-control in Bootstrap */
.ais-form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #34483c;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    transition: all 0.3s;
}

/* ais-btn equivalent to btn in Bootstrap */
.ais-btn {
    display: flex;
    font-weight: 500;
    color: #000;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 1rem;
    font-size: 1rem;
    border-radius: 2rem;
    transition: all 0.3s;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
	text-shadow:none;
}

.ais-btn-sm {
	font-size:0.75rem;
	padding: 0.25rem 0.5rem
}

.ais-btn-lg {
	font-size:1rem;
	padding: 0.60rem 1.5rem
}

.ais-btn-primary {
    color: #000;
    background-color: #fff;
    border-color: #34483c;
}
.ais-btn-primary:hover {
    color: #fff;
    background-color: #34483c;
    border-color: #fff;
	text-decoration:none
}


.ais-btn-secondary {
    color: #fff;
    background-color: #34483c;
    border-color: #34483c;
}
.ais-btn-secondary:hover {
    color: #000;
    background-color: #fff;
    border-color: #34483c;
	text-decoration:none;
}

.ais-btn-tertiary {
    color: #fff;
    background-color: #34483c;
    border-color: #fff;
}
.ais-btn-tertiary:hover {
    color: #000;
    background-color: #fff;
    border-color: #34483c;
	text-decoration:none;
}

.ais-btn-circular {
	padding: 0.375rem
}

.ais-payment-button-container {min-height:60px;}

.ais-tooltip {
    display: block; 
    position: absolute;
    left: 50px;
	width:120px;
    background-color: #34483c;
    color: #fff; 
    padding: 5px;
    border-radius: 5px;
    z-index: 1;
	font-size:12px;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease; 
}

.ais-label {font-size:1.25rem;}
.ais-label .small {font-size:0.75rem;}

.ais-form-step {
	display: none;
}
.ais-form-step.active {
	display: block;
}

.ais-nav-tabs {border-bottom:1px solid #fff;}
.ais-nav-tabs .ais-nav-link { 
	color:#fff; 
	background:0; 
	border:0;
	display: block;
    padding: 0.3rem 1rem; 
}
.ais-nav-tabs .ais-nav-link.active {
	border:1px solid #fff; 
	background:#fff; 
	color:#000; 
	border-radius: 10px 10px 0 0;
}


.color-input {
	background-position: right 10px center;
	background-repeat: no-repeat;
	background-size: 30px 30px;
}
		


/* new image selector */
.image-selection-container {

}
.image-container {
    cursor: pointer;
}
.selected-image {
    border: 6px solid #007bff; /* Bootstrap primary color */
    box-sizing: border-box;
    position:relative;
}
.selected-image::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 16px;  
  height: 16px; 
  background-color: #007bff; 
  border-radius: 50%;
}



/* loader texts */
#loader {
	position:relative;
	width:100%;
}

.loader-text {
	position:absolute;
	left: 50%;
	transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s;
	text-align:center;
}
.loader-text span {
	font-size:75%;
}

/* spinner */
.lds-grid {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-grid div {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #000000;
  animation: lds-grid 1.2s linear infinite;
  transition: all 1s;
}
.lds-grid div:nth-child(1) {
  top: 8px;
  left: 8px;
  animation-delay: 0s;
}
.lds-grid div:nth-child(2) {
  top: 8px;
  left: 32px;
  animation-delay: -0.4s;
}
.lds-grid div:nth-child(3) {
  top: 8px;
  left: 56px;
  animation-delay: -0.8s;
}
.lds-grid div:nth-child(4) {
  top: 32px;
  left: 8px;
  animation-delay: -0.4s;
}
.lds-grid div:nth-child(5) {
  top: 32px;
  left: 32px;
  animation-delay: -0.8s;
}
.lds-grid div:nth-child(6) {
  top: 32px;
  left: 56px;
  animation-delay: -1.2s;
}
.lds-grid div:nth-child(7) {
  top: 56px;
  left: 8px;
  animation-delay: -0.8s;
}
.lds-grid div:nth-child(8) {
  top: 56px;
  left: 32px;
  animation-delay: -1.2s;
}
.lds-grid div:nth-child(9) {
  top: 56px;
  left: 56px;
  animation-delay: -1.6s;
}

.lds-grid div.color-change {
  background: #fff;
}

@keyframes lds-grid {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.social-login {width:230px;}

/* google button */
.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: WHITE;
  background-image: none;
  border: 1px solid #747775;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  font-family: 'Roboto', arial, sans-serif;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  text-align: center;
  -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
  transition: background-color .218s, border-color .218s, box-shadow .218s;
  vertical-align: middle;
  white-space: nowrap;
  width: 230px;
  min-width: min-content;
}

.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 12px;
  min-width: 20px;
  width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
  -webkit-transition: opacity .218s;
  transition: opacity .218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: #ffffff61;
  border-color: #1f1f1f1f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state, 
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: #303030;
  opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
  -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: #303030;
  opacity: 8%;
}