body{
    background-color: #f5f8fb;
}
button:disabled{
    opacity:0.4;
}
.element_disabled{
    opacity:0.4;
    pointer-events: none;
}
.accd_custom_select select{
    height:50px;
}
label{
    font-weight: 600;
}
.component textarea {
    resize: none;
}
.accd_step_2, .accd_step_3{
    display:none;
}
.accd_form_group{
    background-color: #fafafa;
    padding: 3px 10px 6px;
    border-radius: 8px;
    position: relative;
}
.accd_form_control {
    padding: 0 15px;
    min-height: 45px;
    border-radius: 5px;
    border: 1px solid #8c8c8c95;
    box-shadow: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    width: 100%;
    background-color: white;
    outline: none;
}
.accd_form_control:disabled{
    background-color: #f3f3f3;
}
.accd_form_control:disabled:hover{
    border-color:#bbb;
}
.outline_btn {
    align-items: center;
    display: flex;
    color: #1e1e1e;
    border: 1px solid #8a8a8a;
    background-color: #ffffff;
    box-shadow: none;
    font-size: 18px;
    font-weight: 700;
    transition: all .2s ease-in-out;
    border-radius: 4px;
    padding: 4px 10px;
    box-shadow: none !important;
    justify-content: center;
    line-height: 1;
    gap:7px;
    cursor: pointer;
    user-select: none;
}
.outline_btn img{
    width:22px;
}
.outline_btn[data-action="delete"]{
    border: 1px solid #fe4256;
    background-color: rgba(254, 66, 86, .01);
    color:#fe4256;
}
.outline_btn[data-action="delete"]:hover{
    background-color: #ffeaec;
}
.big_btn{
    height: 56px;
    font-size: 18px !important;
    width: 100% !important;
}
.solid_btn{
    align-items: center;
    display: flex;
    min-width: 45px;
    min-height: 45px;
    color: white;
    box-shadow: none;
    background-color: black;
    font-size: 18px;
    transition: all .2s ease-in-out;
    font-weight: 700;
    border-radius: 4px;
    padding: 4px 10px;
    box-shadow: none !important;
    justify-content: center;
    line-height: 1;
    gap:7px;
    cursor: pointer;
    user-select: none;
}
.outline_red{
    color: #ff5d5d!important;
    border: 1px solid !important;
}
.outline_green{
    color: var(--color_1)!important;
    border: 1px solid var(--color_1)!important;
    background-color: #f9fffb!important;
}
.solid_red{
    color: white!important;;
    border: 1px solid #ff5d5d!important;;
    background: #ff5d5d!important;;
}
.solid_green{
    color: white!important;;
    border: 1px solid var(--color_1)!important;;
    background: var(--color_1)!important;;
}

#theCount {
    color: #666 !important;
    position: absolute;
    bottom: 15px;
    right: 17px;
    font-size: .8rem !important;
}

#col_create .component .sub_header{
    padding: 10px;
    font-size: 16px;
    position: relative;
    border-radius: 3px 3px 0 0;
    min-height: 50px;
    cursor: pointer;
    padding-left: 17px;
    font-weight: 600;
}
#col_create .component .sub_header .subh_text{
    display: flex;
    align-items: center;
    height: 40px;
    width: calc(100% - 60px);
    user-select: none;
}
#app_previews{
    position: relative;
    width: 100%;
    height: 100%;;
}
.accd_sub_add_btn{
    border-radius: 4px;
    background-color: var(--color_1);
    color: #fff;
    width: 36px !important;
    height: 36px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: absolute;
    right: 10px;
}
.accd_sub_add_btn span{
    line-height: .8;
    font-size:28px;
}
.input-with-icon .input-icon {
    position: absolute;
    top: 38px;
    left: 10px;
    font-size: 22px;
    color: #898e94;
}
.input-with-icon:before, .input-with-icon:before {
    position: absolute;
    content: '';
    width: 2px;
    height: 20px;
    background-color: #eaeaec;
    left: 40px;
    top: 42px;
}
.bg-container{
    background-color: #f7f7f7;
    width: 100%;
    padding: 21px 15px 23px;
    border-radius: 4px;
}
/************* SWITCH *****************/

.custom-switch-wrp {
    padding: 8px 16px;
    background-color: #e3e3e3;
    border-radius: 4px;
    min-height: 50px;
    align-items: center;
    display: flex;
}
.custom-control.custom-switch {
    display: flex;
    width: 100%;
    padding-left: 0;
    justify-content: space-between;
}

.custom-control .switch {
    position: relative;
    display: inline-block;
    width: 35px;
  }
  
.custom-control .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
.custom-control .switch .slider {
    position: absolute;
    cursor: pointer;
    top: 4px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
    height:17px;
  }
  
.custom-control .switch .slider:before {
  box-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%), 0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%);
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    bottom:0px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
  }
  
.custom-control .switch input:checked + .slider {
    background-color: var(--color_1);
  }
  
.custom-control .switch input:focus + .slider {
    box-shadow: 0 0 1px var(--color_1);
  }
  
.custom-control .switch input:checked + .slider:before {
    -webkit-transform: translateX(17px);
    -ms-transform: translateX(17px);
    transform: translateX(17px);
}
.tooltip {
    position: absolute;
    white-space: nowrap;
    top: 0;
    left: 51%;
    transform: translateX(-49%);
    font-size: 14px;
    background: #fff;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
    opacity: 0;
    pointer-events: none;
    transition: all .2s linear;
}
.tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all .2s linear
}
.color_edit_icon{
    position: absolute;
    top: 12px;
    left: 13px;
    font-size: 16px;
    pointer-events: none;
}
/********HEADER**********/
.MuiStepper-root {
    display: flex;
    padding: 24px;
}
.MuiStep-root{
    color:#595959;
}
.MuiStepLabel-root{
    display: flex;
    align-items: center;
}
.number-wrp{
    background-color: #888888;
    width: 24px;
    height: 24px;
    border-radius: 16px;
    color: white;
}
.MuiStepper-horizontal {
    align-items: center;
    flex-direction: row;
    justify-content: center;
}
.create-qr-progress-header-wrp .MuiStepConnector-horizontal {
    width: 32px;
    margin: 0 16px 0 8px;
}
.progress-text{
    font-size:15px;
    font-weight: 600;
}
.jss1484{
    height: 1px;
    opacity: .5;
    border-top: 0;
    background-color: #220e27;
    display: block;
    border-color: #bdbdbd;
}
.steps-progress-wrp div .MuiStepConnector-horizontal{
    position: relative;
    width: 40px;
}
.MuiStepConnector-horizontal span{
    position: relative;
}
.MuiStepConnector-horizontal span::after{
    color: #4d4d4d;
    font-family: "coladeu";
    position: absolute;
    content: "\64";
    top: -10px;
    right: -8px;
    font-size: 15px;
}
.qr_type_icon{
    font-size: 25px;
    display: flex;
    padding: 5px;
    border-radius: 50%;
    color: var(--color_1);
}
#short_url_editor{
    position: relative;
    width: fit-content;
    margin: auto;
    color: #888;
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 14px;
    padding: 8px 15px;
}
#short_domain_select{
    box-sizing: border-box;
    appearance: none;
    border: 0px;
    background: #f7f7f7;
    color: #000000;
    border-radius: 6px;
    margin: 0 3px;
    padding-left: 5px;
    padding-right: 24px;
    cursor: pointer;
    margin-top: -1px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E);
    background-repeat: no-repeat;
    background-position: right .7em top 50%;
    background-size: .65em auto;
}
#short_url_editor .short_icon_edit{
    position: absolute;
    right: 4px;
    padding: 8px;
    background: #ffffff;
    z-index: 1;
}
#short_id:focus{
    outline: 0;
}
#short_id{
    outline: 0;
    border:0;
    overflow: hidden;
    white-space: nowrap;
}
/********APPP**********/
.qr_types{
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 5px 0 0;
    margin: 0;
}
.create_card{
    padding-bottom: 14px;
    padding-left:0;
}
.create_card .card-text{
    
}
.create_card .card-text .icon{
font-weight: bold;
color: #444;
font-size: 18px;
}
.create_card .qr-card-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    align-items: center;
    margin: 0 5px;
    text-align: left;
}
.qr_types .input-container  .radio-button {
    box-sizing: border-box;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 6;
}
.qr_types .input-container {
    height: 80px;
    padding: 14px;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
}
.card_border {
    border: 2px solid transparent;
    cursor: pointer;
    outline: 0;
    padding: 12px;
    box-shadow: 0 4px 6px 0 rgba(205, 209, 224, .5);
    box-sizing: border-box;
    transition: all .25s ease-in-out;
    border-radius: 8px;
    background-color: #fff;
}
.card_border:hover{
    border-color: var(--color_1);
    background-color: rgb(240, 249, 255);
}
.qr-card-img-wrap{
    padding: 12px;
    margin-bottom: 6px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.input-container img {
    width: 40px;
    height: 40px;
}
.input-container .radio-button {
    box-sizing: border-box;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 6;
}

.input-container .icon {
    font-size: 16px;
}
.input-container .desc {
    color: #595959;
    font-size: 13px;
    line-height: 18px;
    display: flex;
    align-items: center;
    margin-top: 0;
}
.input-container .desc {
    line-height: 1.25;
}
/*********   DROP FILE **********/
.drop_cola{
    text-align: center;
    background: #eff9ff;
    border: 2px dashed var(--color_1);;
    color: var(--color_1);
}
.drop_collapse{
    
}
#accd_images .c_lines,#accd_songs .c_lines{
    padding: 10px;
}
.accd_sections .d_up_file{
    position: relative;
    border-radius: 6px;
    text-align: center;
    margin: 10px;
    display: inline-block;
    min-width: 100px;
}
.accd_sections .dupf_progress{
    background-color: #fff;
    height: 90px;
    width: 100%;
    top: 0;
    padding: 2px 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}
.accd_sections .dupf_progress .dupfp_bar{
    height: 16px;
    width: 2%;
    background: green;
    border-radius: 10px;
}
.accd_sections .dupf_preview{
    display: flex;
    height: 90px;
    width: 90px;
    background: white;
    border-radius: 8px;
    box-shadow: 1px 1px 8px #ccc;
    overflow: hidden;
    align-items: center;
}
.accd_sections .dupf_preview i{
    font-size: 50px;
    margin: auto;
    display: flex;
    color: #81c8e8;
}
.accd_sections .dupf_delete{
    margin-top: 5px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    color: #fcc2c2;
}
.accd_sections .d_up_file:hover .dupf_delete{
    color:red;
}
/*component*/
#col_create .components{
    margin-bottom: 100px;
}
#col_create .components .add_component_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    user-select: none;
    font-size: 20px;
    gap: 8px;
    border-radius: 6px;
    box-shadow: 0px 1px 5px #dadada;
}
#col_create .add_components_dropdown{
    width: 100%;
    margin: 30px 0;
    padding: 10px;
    box-shadow: 0px 1px 9px #51515185;
    border-radius: 6px;
    height: 300px;
}
#col_create .add_components_dropdown .dropdown-item{
    border-bottom: 1px solid #eee;
}
#col_create .component{
    position:relative;
    border-radius: 8px !important;
    margin-bottom: 12px;
    background: white;
    border: 1px solid white;
}
#col_create .component_header{
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-shadow: none !important;
    min-height: 68px;
    padding: 15px;
    color: black;
    font-size: 17px;
    line-height: 26px;
    font-weight: 600;
    user-select: none;
}
#col_create .component_body{
    display: none;
    padding-bottom: 16px;
}
#col_create .component .b_line{
    padding: 0 10px 0 10px;
}
.accd_text{
    display: flex;
    font-size: 19px;
    font-weight: 600;
    justify-content: left;
    margin: auto;
    width: 100%;
    padding-left: 15px;
    align-items: flex-start;
    flex-direction: column;
}
.accd_text .accd_title{
 font-weight: bold;
}
.accd_text sup{
    color: #e00c20;
    font-size: 20px;
    margin-left: .2rem;
    font-weight: 600;
    top: -5px;
}
.accd_text .accd_description{
    text-align: start;
    font-size: .9rem;
    color: #96949c;
    font-weight: 600;
    line-height: 16px;
}
.accd_icon{
    background-color: #fbfbfb;
    padding: 12px;
    border-radius: 5px;
}
.accd_icon div{
    display: flex;
    font-size: 30px;
    color: #767c83;
}
.accd_icon_font::before{
    font-family: "coladeu";
    content: "\62";
}
.accd_toggler{
    line-height: .8;
    transition: .2s;
    font-size: 24px;
    transform:rotate(0deg);
}
.accd_toggled{
    transform:rotate(90deg);
}
.accd_show{
    display: block;
}
.accd_hr{
    width: 97%;
    margin: auto;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 11px;
}

/*****CHECKBOX****/
.accd_checkbox label {
    height: 20px;
    width: 20px;
    border: 2px solid #96949c;
    transition: all .2s ease-in-out;
    border-radius: 8px;
    cursor: pointer;
    left: 0;
    position: absolute;
    top: 0;
}
.accd_checkbox {
    position: relative;
    width: 20px;
    height: 20px;
}
.accd_checkbox input[type=checkbox] {
    visibility: hidden;
}
.accd_checkbox input[type=checkbox]:checked+label {
    border-color: var(--color_1);
    background-color: var(--color_1);
}
.accd_checkbox label:after {
    border: 2px solid var(--white);
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 2px;
    opacity: 0;
    position: absolute;
    top: 4px;
    transform: rotate(-45deg);
    width: 12px;
}
.accd_checkbox input[type=checkbox]:checked+label:after {
    opacity: 1;
}
.accd_checkbox_text{
    width:100%;
}
.accd_checkbox_text label{
    background-color: #f7f7f7;
    color: #68676ccc;
    font-size: 13px;
    transition: color .2s ease-in-out;
    font-weight: 600;
    line-height: 18px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    padding-left: 16px;
    border-radius: 4px;
}
.accd_trigger_dropdown{
    padding: 0 24px 0 8px;
    position: relative;
    border: 0;
    min-height: 41px;
    width: 60px;
    top: 2px;
    left: 2px;
    font-size: 24px;
}
.accd_trigger_dropdown:hover{
    background-color: #f4f4f4;
}
.accd_trigger_dropdown::before{
    position: absolute;
    content: '';
    width: 2px;
    height: 20px;
    background-color: #eaeaec;
    right: -4px;
    top: 12px;
}
.accd_trigger_dropdown::after{
    position: absolute;
    content: "\45";
    font-family: coladeu !important;
    right: 8px;
    top: 12px;
    font-size: 12px;
}
.accd_header_error{
    background: #ffd7d7!important;
}
.accd_field_error{
    color:red!important;
    border-color: red!important;
    background: #fff8f8!important;
}

/**DESIGN**/
#accd_design .design_themes,
#accd_design .design_grids {
    white-space: nowrap;
    width: 100%;
    overflow-x: auto;
    padding: 0 20px;
	scrollbar-width: thin;
	scrollbar-color: #527ac9 #F2F5FC;
}
#accd_design .design_theme{
    width:100px;
    height:150px;
    background-color: #fff;
    margin-bottom: 15px;
    display: inline-block;
    border:3px solid #fff;
    border-radius: 12px;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}
#accd_design .design_theme .thm:first-child {

}
#accd_design .design_theme:hover{
    border: 3px solid #eee;
}
#accd_design .design_theme.selected{
    border:3px solid var(--color_1);
}
#accd_design .scroll_step{
    z-index: 1;
    color: #b9b9b9;
    top: 0;
    width: 12px;
    height: 90%;
    background-color: #f3f3f3;
    position: absolute;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    user-select: none;
}
#accd_design .scroll_step i{
    display:flex;
}
#accd_design .scroll_step_left{
    left:0;
}
#accd_design .scroll_step_right{
    right:0;
}
#accd_design .scroll_step:hover{
    background:#eee;
}
#accd_design .design_grids{
    height: 80px;
}
/* #accd_design .design_grids::-webkit-scrollbar,
#accd_design .design_theme::-webkit-scrollbar {
    width: 7px;
}
  
#accd_design .design_grids::-webkit-scrollbar-track,
#accd_design .design_theme::-webkit-scrollbar-track {
    background-color: #F2F5FC;
    border-radius: 100px;
}

#accd_design .design_grids::-webkit-scrollbar-thumb,
#accd_design .design_theme::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-clip: content-box;
    background-color: #527ac9;
} */
#accd_design .design_grids .design_grid{
    border-radius: 50%;
    width: 65px;
    height: 65px;
    background-color: #fff;
    margin: 4px;
    display: inline-block;
    border: 3px solid #fff;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0px 1px 4px #a1a1a1;
}
#accd_design .design_grids .design_grid:hover{
    box-shadow: 0px 1px 4px #494949;
}
#accd_design .design_grids .design_grid.selected{
    box-shadow: 0px 0px 3px 2px  var(--color_1);
}
.accd_palettes{
    justify-content: space-between;
    padding: 12px 1px;
    border-radius: 5px 5px 0 0;
    background-color: #f5f8fb;
}
.accd_palettes input{
	appearance: none;
	-webkit-appearance: none;
    width: 28px;
    height: 28px;
    border: none;
    pointer-events: none;
    outline: none;
    display: flex;
    padding: 0;
    margin:3px 0;
    outline: 0;
    border:1px solid #ccc;
}
.accd_palettes input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;
}
.accd_palettes input[type="color"]::-webkit-color-swatch {
	border: none;
	border-radius: 5px;
}
.accd_palettes input[type="color"]::-moz-color-swatch {
	border: none;
}

.accd_palette{
    cursor: pointer;
    transition: all .2s ease-in-out;
    align-items: center;
    border-radius: 8px;
    justify-content: space-between;
    background-color: #fff;
    position: relative;
    padding: 0 5px;
    max-width: 100px;
    border:1px solid #ccc;
    margin-bottom: 10px;
}

.accd_palette:hover{
    border-color: var(--color_1);
    
}
.accd_palette:hover input{

}
.accd_palette.active input{
    border-color: #ccc;
}
.accd_palette.active{
    background-color: var(--color_1);
}
#accd_design .accd_colors{
    gap:3px;
}
.accd_color_pickers{
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 15px 0 25px;
    position: relative;
    border-radius: 0 0 5px 5px;
    background-color: #f5f8fb;
    gap:10px;
}
.accd_color_picker{
    border: 2px solid rgb(150, 148, 156);
    padding: 0 5px 0 3px;
    min-height: 50px;
    border-radius: 5px;
    box-shadow: none;
    transition: background-color, border-color .25s ease-in-out;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
}
.accd_color_picker label{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    margin-bottom: 0 !important;
    position: relative;
}
.accd_color_picker input{
    height: 42px;
    font-size:16px;
    font-weight: 600;
}
.accd_color_picker input[type="color"] {
	cursor: pointer;
	padding: 0;
  	border: 1px solid #ccc;
	width: 45px;
	height: 40px;
}
.accd_color_picker input[type="text"] {
    border: 0;
}
.accd_color_picker input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;
}
.accd_color_picker input[type="color"]::-webkit-color-swatch {
	border: none;
	border-radius: 5px;
}
.accd_color_picker input[type="color"]::-moz-color-swatch {
	border: none;
}
.accd_phone_type_dropdown .dropdown-item{
    gap: 13px;
    display: flex;
    align-items: center;
    padding: 8px;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}
.drp-icon{
    font-size: 20px;
    line-height: .8;
}
.swap-hr-600 {
    display: none;
}
.swap-hr {
    display: block !important;
    border-top: 1px solid #ccc;
    position: absolute;
    top: 52%;
    width: 91%;
    margin: auto;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
}
.swap-btn-wrap {
    width: 75px;
    border-radius: 100%;
    margin: auto;
    height: 75px;
    display: flex;
    background-color: white;
    position: relative;
    z-index: 2;
}
.swap-btn{
    border: 1px solid green;
    background-color: #fff;
    border-radius: 100% !important;
    width: 55px;
    height: 55px;
    font-size: 22px;
}
.swap-btn-small{
    border: 1px solid green;
    background-color: #fff;
    border-radius: 100% !important;
    width: 40px;
    height: 40px;
    font-size: 18px;
}
@media (max-width: 660px) {
    .swap-hr-600 {
        display: block !important;
        border: 1px solid #ccc;
        position: absolute;
        top: 52%;
        width: 91%;
        margin: auto;
        left: 50%;
        z-index: 1;
        transform: translate(-50%, -50%);
    }
    .swap-btn-wrap-600 {
        width: 75px;
        border-radius: 100%;
        margin: auto;
        height: 75px;
        display: flex;
        background-color: #f5f8fb;
        position: relative;
        z-index: 2;
        margin-top: 20px;
    }
    .accd_color_pickers{
        flex-direction: column;
        align-items: center;
    }
}

/*****WELCOME SCREEN*/
.uploaded_preview{
    display: none;
}
.basic_image_form .main_upload_form {
    display: flex;
    align-items: center;
}
.basic_image_form .main_upload_form label {
    color: #96949c;
    width: 106px;
    border: 1px dashed var(--color_1);
    cursor: pointer;
    height: 108px;
    outline: 0;
    padding: 0;
    position: relative;
    transition: all .2s ease-in-out;
    border-radius: 8px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.basic_image_form .main_upload_form .upload-btn {
    height: 45px !important;
    border-radius: 4px;
    font-size: 15px !important;
    min-width: 140px;
}
.basic_image_form .main_upload_form label input {
    width: 100% !important;
    height: 100%;
    position: absolute;
    opacity: 0;
    cursor: pointer;
    top: 0;
    left: 0;
}
.basic_image_form .main_upload_form label .uploaded_preview {
    width: 100px;
    height: 100px;
    display: flex;
    overflow: hidden;
    align-items: center;
    border-radius: 4px;
    flex-direction: row;
    justify-content: center;
    background-color: #f7f7f7;
    padding-top: 10px;
    padding-bottom: 10px;
}
.basic_image_form .main_upload_form label .add-icon {
    top: -8px;
    color: #fff;
    right: -8px;
    width: 40px;
    height: 40px;
    display: flex;
    position: absolute;
    transition: background-color .2s ease-in-out;
    align-items: center;
    border-radius: 100%;
    flex-direction: row;
    justify-content: center;
    background-color: #220e27;
}
.basic_image_form .main_upload_form label .uploaded_preview>span {
    display: flex;
    font-size: 48px;
    color: var(--color_1);
    background-color: #f7f7f7;
    font-weight: 400;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
}
#accd_profile_picture .basic_image_form .main_upload_form{
    display: block!important;
}
#accd_profile_picture .basic_image_form .delete_picture_btn{
    max-width: 120px;
    margin: auto;
}

#accd_profile_picture .main_upload_form label{
    margin: 10px auto!important;
    margin-bottom: 10px;
}
/****SOCIALS*****/
.accd_social_lines{

}
.accd_social_icons{
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 5px;
    margin-left: 0;
}
.accd_social_btn {
    padding: 5px;
    border: 1px solid #eaeaec;
    width: 50px;
    height: 50px;
    color: #c3c3c6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 4px;
    background-color: transparent;
    transition: all .2s ease-in-out;
}
.accd_social_btn:hover {
    border: 1px solid #888;
    background-color: #eee;
}
.accd_social_tooltip {
    position: absolute;
    white-space: nowrap;
    top: 49px;
    left: 51%;
    transform: translateX(-49%);
    font-size: 14px;
    font-weight: bold;
    background: #fff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
    opacity: 0;
    pointer-events: none;
    transition: all .2s linear;
    z-index: 10;
}
.accd_social_tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    top: -4px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all .2s linear
}
.accd_social_btn:hover .accd_social_tooltip,.accd_social_btn:hover .accd_social_tooltip::before {
    background-color:var(--color_1);
    color: #fff;
    
}

.accd_social_btn:hover .accd_social_tooltip {
    opacity: 1;
    top: 56px;
    visibility: visible;
    pointer-events: none
}

/********* VIDEO  ************/
#accd_video .accd_video_player {
    width: 140px;
    height: 100px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    background-color: #eaeaec;
    margin: auto;
    border-radius: 6px;
    overflow: hidden;
}
#accd_video .accd_video_player video{
    object-fit: cover;
}
#accd_video .upload_progress {
    display: none;
    position: relative;
    background-color: #eee;
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    margin-right: 10px;
    width: 100%;
}
#accd_video .upload_bar{
    position: absolute;
    background: aquamarine;
    width:0%;
    height:100%;
}
#accd_video .upload_percent{
    position: relative;
}

/*********** FACILITIES **********************/
#accd_facilities .c_lines{
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    column-gap: 10px;
}
#accd_facilities .facility{
    width: 100%;
    height: 130px;
    background-color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    border: 3px solid white;
}
#accd_facilities .fselected{
    border: 3px solid #1e1e1e;
}
#accd_facilities .ficon{
    width:60px;
    height:60px;
    border-radius: 50%;
    background-color: #eee;
    font-size: 30px;
    display:flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom:6px;
}

/*********** OPEN HOURS *************/
#accd_opening_hours .c_line{
    padding: 0!important;
}
.opening_day{

}
.time_picker_from, .time_picker_to{
    position: relative;
    padding:0 5px;
    height:40px;
    text-align: center;
    min-width: 100px;
    width:100%;
}
.time_picker_from[value=""]::before{
    content: 'From';
    left: 0;
    top: 0;
    color: #9d9d9d;
    position: absolute;
    background: white;
    width: 75%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px 0px 0px 6px;
 }
 .time_picker_to[value=""]::before{
    content: 'To';
    left: 0;
    top: 0;
    color: #9d9d9d;
    position: absolute;
    background: white;
    width: 75%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px 0px 0px 6px;
 }
 .time_picker_from:focus::before{
    display: none;
 }
 .time_picker_from:hover::before{
    display: none;
 }
 .time_picker_to:focus::before{
    display: none;
 }
 .time_picker_to:hover::before{
    display: none;
 }
 .times_disabled{
    pointer-events: none;
    opacity: 0.4;
 }
 .times_disabled .more_opening_times{
    display:none!important;
 }
/********MENU************/
.section_btn,.product_btn {
    display: flex;
    width: 100%;
    box-shadow: none !important;
    padding: 0 17px 0 6px;
    color: var(--black);
    font-size: 17px;
    line-height: 26px;
    font-weight: 600;
    min-height: 50px;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    background: transparent;
}
.toggle-icon {
    width: 32px;
    height: 32px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    background-color: #f7f7f7;
    position: relative;
}
#accd_menu .accd_sections .b_line{
    padding-bottom:0;
}

.section_name,.product_name {
    color: #220e27;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
}
.accd_lang_btn{
    height:100%;
    position:relative;
    font-size: 30px;
    background-color: white;
    display: flex;
    border: 1px solid transparent;
    align-items: center;
    justify-content: center;
    padding: 2px 10px;
    border-radius: 6px;
}
.accd_lang_dropdown{
    display: none;
    position: absolute;
    top: 55px;
    left: 0px;
    font-size: 16px;
    z-index: 2;
    background: white;
    text-align: left;
    overflow: auto;
    width: 250px;
    max-height: 400px;
    padding: 5px;
    border-radius: 6px;
    box-shadow: 1px 1px 8px #ccc;
}
.accd_lang_dropdown li{
    cursor: pointer;
    user-select: none;
    padding: 0px 5px;
    border-radius: 3px;
}
.accd_lang_dropdown li:hover{
    background-color: #eee;
}
.accd_lang_btn:hover{
    border: 1px solid #ccc;
}
#col_create .component.editable{

}
#col_create .component .a_edit_btns{
    position: absolute;
    top: 25px;
    display: flex;
    right: 10%;
    gap: 8px;
    font-size: 20px;
}
#col_create .component .a_edit_btns .a_edit_btn{
    
    padding: 7px;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    box-shadow: 0px 1px 3px #c5c5c5;
}
#col_create .component .a_edit_btns .a_edit_btn[data-action="delete"]{
    color:red;
}
#col_create .component .a_edit_btns .a_edit_btn i{
    display:flex;
}
#drop_added_languages li:first-child .drop_lang_up_btn{
    opacity: .2;
    pointer-events: none;
}
#col_create .component .b_line:first-child .drop_lang_btn[data-action="up"]{
    opacity: .2;
    pointer-events: none;
}

#col_create .editable:first-child .a_edit_btn[data-action="up"]{
    opacity: .2;
    pointer-events: none;
}
#col_create .editable:last-child .a_edit_btn[data-action="down"]{
    opacity: .2;
    pointer-events: none;
}

#col_create .component .b_line:first-child .b_btn[data-action="up"]{
    opacity: .2;
    pointer-events: none;
}
#col_create .component .b_line:last-child .b_btn[data-action="down"]{
    opacity: .2;
    pointer-events: none;
}
#col_create .component .c_line:first-child .c_btn[data-action="up"]{
    opacity: .2;
    pointer-events: none;
}
#col_create .component .c_line:last-child .c_btn[data-action="down"]{
    opacity: .2;
    pointer-events: none;
}
#col_create .section_collapse,.product_collapse{
    display:none;
}
/*menu product*/
#col_create .component .c_line{
    margin-top: 20px;
    border-radius: 5px;
    padding: 5px 10px;
}
.accd_c_content{
    background-color: #fafafa;
    border-radius: 5px;
}
.all_allergens{
    gap: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    column-gap: 15px;
}
.allergen_btn {
    position: relative;
    border: 2px solid #e4e4dd;
    border-radius: 5px;
    width: max-content !important;
    cursor: pointer !important;
}
.allergen_img {
    display: block;
    width: 52px;
    padding: 8px;
}
.allergen_btn:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: none
}
.allergen_btn:hover .tooltip,.allergen_btn:hover .tooltip::before {
    background-color: #26162e;
    color: #fff
}
.product_allergens .aselected{
    border: 2px solid #1e1e1e;
}
/*******LOCATION*********/
#maps_suggest{
    display:none;
    position: absolute;
    width: 100%;
    background-color: #fff;
    min-height: 100px;
    z-index: 2;
    box-shadow: 1px 4px 9px #ccc;
    border-radius: 4px;
    padding: 4px;
    max-height: 250px;
    overflow-y: scroll;
}
.address_result{
    display: flex;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    padding: 6px 10px;
    align-items: center;
    gap: 10px;
}
.address_result:hover{
    background-color: #eee;
}
.address_result .icon-location{
    line-height: .8;
}
.address_result .p_address{

}
/*********  APP  *************/

.accd_app_buttons{
    display: flex;
    text-align: center;
    gap:8px;
    padding:8px;
}
.accd_app_buttons .outline_btn{
    width:100%;
}
/********* LINKS **********/

#accd_links .accd_link{
    background-color: #fafafa;
}
#accd_links .accd_link_header{
    padding: 10px;
    border-bottom: 1px solid #dfdfdf;
    border-radius: 8px 8px 0 0;
}
.b_line .list_text{
    font-weight: 600;
}

/******** FONTS *******/
.custom-accodian .fbtn .icon-qr {
    font-size: 30px;
    padding: 12px;
    background-color:#fff;
    border-radius: 12px
}
.fbtn{
    background-color: white;
}
.custom-select-box-folder input,.custom-select-box input {
    padding: 11px 8px 11px 24px;
    min-height: 45px;
    border-radius: 5px;
    border: 1px solid #8c8c8c95;
    box-shadow: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    width: 100%;
    background-color: white;
    outline: none;
    cursor: pointer;
}

.custom-select-box-folder .fonts_dropdown,.custom-select-box .fonts_dropdown {
    width: 100%;
    max-width: 340px;
    position: absolute;
    background-color: #fff;
    padding: 0;
    z-index: 9999;
    border-radius: 8px;
    margin: auto;
    left: 0;
    right: 0;
    overflow-y:scroll;
    max-height: 0;
    transition: .3s ease-in-out
}

.custom-select-box .fonts_dropdown {
    box-shadow: 0 18px 16px 1px rgb(0 0 0/15%)
}

.custom-select-box-folder .fonts_dropdown {
    box-shadow: 0 -3px 16px 1px rgb(0 0 0/15%)
}

.custom-select-box-folder .accd_select_font .drp-icon-btn-open,.custom-select-box-folder .accd_select_font .drp-icon-btn-close,.custom-select-box .accd_select_font .drp-icon-btn-open,.custom-select-box .accd_select_font .drp-icon-btn-close {
    color: black;
}

.font-select-box .accd_select_font .drp-icon-btn-open,.font-select-box .accd_select_font .drp-icon-btn-close {
    width: 100%;
    height: 100%
}

.drp-icon-btn-open .fa-angle-down,.drp-icon-btn-close .fa-angle-up {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%)
}

.custom-select-box .fonts_dropdown.active {
    max-height: 1000px;
    transition: .5s ease-in-out
}

.font-select-box .fonts_dropdown.active {
    height: 250px!important;
    max-height: 250px!important;
    overflow-y: auto
}

.custom-select-box-folder .fonts_dropdown .drp-btn,.custom-select-box .fonts_dropdown .drp-btn {
    padding: 2px 8px;
    text-align: left;
    font-size: 15px;
    font-weight: 400;
    line-height: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 24px;
    height: 40px;
    border-radius: 0!important
}

@supports(-webkit-touch-callout:none) {
    @media(max-width: 480px) {
        .custom-select-box .fonts_dropdown button.drp-btn .custom-select-box-folder .fonts_dropdown button.drp-btn {
            -webkit-appearance:none;
            border-radius: 0!important;
            background-color: #fff
        }

        .custom-select-box .fonts_dropdown button.drp-btn:hover .custom-select-box-folder .fonts_dropdown button.drp-btn:hover {
            background-color: var(--primary-green-1);
            color: var(--white)
        }
    }
}

@media(max-width: 575px) {
    .folder-drp-btn {
        white-space:nowrap;
        display: block!important;
        overflow: hidden;
        text-overflow: ellipsis
    }
}

.fonts_dropdown.folder-dropdown.active .btn.drp-btn.folder-drp-btn.created-folder.touchstart {
    white-space: nowrap;
    display: block!important;
    overflow: hidden;
    text-overflow: ellipsis
}

.custom-select-box .fonts_dropdown .drp-btn:hover,.custom-select-box-folder .fonts_dropdown .drp-btn:hover {
    background-color: green;
    color: white;
}

.custom-select-box .fonts_dropdown .drp-btn.btn-lato {
    font-family: lato,sans-serif!important
}

.custom-select-box .fonts_dropdown .drp-btn.btn-open {
    font-family: open sans,sans-serif!important
}

.custom-select-box .fonts_dropdown .drp-btn.btn-robo {
    font-family: roboto,sans-serif!important
}

.custom-select-box .fonts_dropdown .drp-btn.btn-oswa {
    font-family: oswald,sans-serif!important
}

.custom-select-box .fonts_dropdown .drp-btn.btn-mont {
    font-family: montserrat,sans-serif!important
}

.custom-select-box .fonts_dropdown .drp-btn.btn-sour {
    font-family: source sans pro,sans-serif!important
}

.custom-select-box .fonts_dropdown .drp-btn.btn-slab {
    font-family: "slabo 27px",serif!important
}

.custom-select-box .fonts_dropdown .drp-btn.btn-rale {
    font-family: raleway,sans-serif!important
}

.custom-select-box .fonts_dropdown .drp-btn.btn-merr {
    font-family: merriweather,serif!important
}

.custom-select-box .fonts_dropdown .drp-btn.btn-noto {
    font-family: noto sans,sans-serif!important
}

.custom-select-box .fonts_dropdown .drp-btn.btn-walsh {
    font-family: gt walsheim pro,sans-serif!important
}
.accd_show_fonts{
    max-height: 250px!important;
}
.accd_show{
    display:block;
}


.basic_image_form span {
    color: black;
    font-weight: 700;
    display: block;
}
/****tooltip******/
.step-2-tooltip-text {
    position: absolute;
    top: 0;
    width: 275px;
    font-size: 14px;
    background: #fff!important;
    color: #fff!important;
    padding: 5px 8px;
    font-weight: 500!important;
    margin-left: -122px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0,0,0,.1);
    opacity: 0;
    pointer-events: none;
    transition: all .4s cubic-bezier(.68,-.55,.265,1.55);
    z-index: 5
}

.step-2-tooltip-text::before {
    position: absolute;
    z-index: 10;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff!important;
    bottom: -5px;
    left: 48%;
    transform: translate(-50%) rotate(45deg);
    transition: all .4s cubic-bezier(.68,-.55,.265,1.55)
}

.step2-tootltip:hover .step-2-tooltip-text {
    top: -104px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.step2-tootltip:hover .step-2-tooltip-text,.step2-tootltip:hover .step-2-tooltip-text::before {
    background-color: #707070!important;
    color: #fff!important;
    transition: .3s
}

.info-tooltip-icon {
    background: #c9c9ce!important;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: 10px;
    margin-right: 5px;
    position: relative;
    display: flex;
    place-content: center;
    cursor: pointer;
    font-family: gt walsheim pro,sans-serif!important
}

.info-tooltip-icon::after {
    content: '?';
    display: flex;
    color: #fff!important;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 400!important
}

.info-tooltip-icon:hover {
    background: #aeaeb1!important;
    box-shadow: #e5e7eb 0 4px 6px 0
}

.custom-tooltip-op-wrap:hover .custom-tooltip-op {
    top: 50px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.custom-tooltip-op-wrap {
    cursor: pointer;
    pointer-events: all
}

.custom-tooltip-op-wrap {
    position: relative;
    top: 0;
    left: 0
}

.custom-tooltip-op-wrap:hover .custom-tooltip-op,.custom-tooltip-op-wrap:hover .custom-tooltip-op::before {
    background-color: #707070;
    color: #fff
}

.custom-tooltip-op {
    position: absolute;
    top: 0;
    left: 47px;
    transform: translateY(-125px);
    width: 235px;
    font-size: 12px;
    background: #fff;
    color: #fff;
    padding: 5px 8px;
    font-weight: 500!important;
    margin-left: -243px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0,0,0,.1);
    opacity: 0;
    pointer-events: none;
    transition: all .4s cubic-bezier(.68,-.55,.265,1.55);
    z-index: 50
}

.custom-tooltip-op {
    transform: translateY(-180%)
}

.custom-tooltip-op::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -4px;
    left: 92%;
    transform: translate(-50%) rotate(45deg);
    transition: all .4s cubic-bezier(.68,-.55,.265,1.55)
}

@media(max-width: 800px) {
    .step2-tootltip:hover .step-2-tooltip-text {
        left:-31px
    }

    .step-2-tooltip-text::before {
        left: 59%
    }
}

@media(max-width: 635px) {
    .step2-tootltip:hover .step-2-tooltip-text {
        left:-120px
    }

    .step-2-tooltip-text::before {
        left: 91%
    }

    .info-tooltip-icon {
        margin-left: 10px
    }
}

.custom-tooltip-wrap {
    position: relative
}

.custom-tooltip-wrap::before,.custom-tooltip-wrap.password-tooltip-wrap::before {
    content: "";
    position: absolute;
    background-color: #707070;
    width: 8px;
    height: 8px;
    left: 57%;
    transform: translateX(-50%) rotate(45deg);
    bottom: 24px;
    opacity: 0
}

.custom-tooltip-wrap.spc-tooltip-wrap::before {
    bottom: 32px
}

.custom-tooltip-content {
    position: absolute;
    top: 0;
    width: 280px;
    font-size: 14px!important;
    background: #fff;
    color: #fff;
    padding: 5px 8px;
    font-weight: 500!important;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0,0,0,.1);
    opacity: 0;
    pointer-events: none;
    transition: all .4s cubic-bezier(.68,-.55,.265,1.55);
    z-index: 50;
    text-align: left;
}

.custom-tooltip-content::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -4px;
    transform: translate(-50%) rotate(45deg);
    transition: all .3s cubic-bezier(.68,-.55,.265,1.55)
}

.custom-tooltip-wrap:hover .custom-tooltip-content,.custom-tooltip-wrap:hover .custom-tooltip-content::before {
    background-color: #707070;
    color: #fff
}

.custom-tooltip-wrap:hover .custom-tooltip-wrap::before {
    opacity: 1
}

.custom-tooltip-wrap:hover::before {
    opacity: 1;
    transition: 1.8s
}

.custom-tooltip-wrap:hover .custom-tooltip-content {
    top: unset;
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.custom-tooltip-content.custom-tooltip-pw {
}



/******************* QR DESIGN *************************/

.mp_btn,.frame_btn{
    min-width: 52px;
    max-width: 80px;
    border: 3px solid #eaeaec;
    height: 52px;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    flex-direction: row;
    justify-content: center;
    background-color: #fff;
    cursor: pointer;
    outline: 0;
    padding: 0;
    background-color: #fff;
    margin-bottom: 0;
}
.frame_btn{
    height:100px;
    padding:6px;
    width:80px;
}
.mp_btn.active {
    border-color: #34c759
}
.mp_btn:hover,.frame_btn:hover {
    border:1px solid #000000
}

.frame_btn.selected,.mp_btn.selected{
    border:3px solid #34c759;
}


/************** MEDIA width ******************/
@media(max-width: 768px) {
    #col_create .component .a_edit_btns{
        top:-20px;
    }
    #col_create .component.editable{
        margin-top:3rem;
    }
    #col_create .component .b_line{
        padding: 0 5px;
    }
}
@media(max-width: 574.98px) {
    .cd_label{
        order:0;
        flex-grow: 1;
    }
    .cd_info{
        order:2;
    }
    .cd_del{
        order:1;
    }
    .custom-tooltip-content {
        width:270px
    }
    .custom-tooltip-content::before {
        display: none
    }
}

@media(min-width: 575px) {
    .custom-tooltip-wrap::before {
        display:none
    }

    .custom-tooltip-wrap.password-tooltip-wrap::before {
        display: block!important
    }

    .password-tooltip-wrap .custom-tooltip-content::before {
        display: none
    }
}

@media(max-width: 374.98px) {
    .custom-tooltip-content {
        width:250px
    }
}

@media(min-width: 1100px) {
    .custom-tooltip-content::before {
        left:7%!important
    }

    .custom-tooltip-content.password-tooltip {
        left: -110px
    }
}