body {
    display: flex;
    flex-direction: column;

    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;

    font-family: Sofia Pro Regular;
    color: #534B53;
    background: transparent !important;
    font-style: normal;
}

.loader_container{
  display: none;
  align-items: center;
  justify-content: center;

  position: fixed;
  width: 100%;  
  height: 100%;
  background: #26005a52;
  z-index: 9999;
}
.loader {
  animation: rotate 1s infinite;
  height: 50px;
  width: 50px;
}
.loader:before,
.loader:after {
  border-radius: 50%;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}
.loader:before {
  animation: ball1 1s infinite;
  background-color: #93328e;
  box-shadow: 30px 0 0 #009681;
  margin-bottom: 10px;
}
.loader:after {
  animation: ball2 1s infinite;
  background-color: #009681;
  box-shadow: 30px 0 0 #93328e;
}

@keyframes rotate {
  0% { transform: rotate(0deg) scale(0.8) }
  50% { transform: rotate(360deg) scale(1.2) }
  100% { transform: rotate(720deg) scale(0.8) }
}

@keyframes ball1 {
  0% {
    box-shadow: 30px 0 0 #009681;
  }
  50% {
    box-shadow: 0 0 0 #009681;
    margin-bottom: 0;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #009681;
    margin-bottom: 10px;
  }
}

@keyframes ball2 {
  0% {
    box-shadow: 30px 0 0 #93328e;
  }
  50% {
    box-shadow: 0 0 0 #93328e;
    margin-top: -20px;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #93328e;
    margin-top: 0;
  }
}

h1 {
    margin: 0;

    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
}

h2 {
    margin: 0;

    font-size: 36px;
    line-height: 46px;
    color: #26005A;
}

h3 {
    margin: 0;

    font-size: 22px;    
    line-height: 28px;
    color: #26005A;
}

h4 {
    margin: 0;

    font-size: 26px;
    line-height: 32px;
    color: #26005A;
}

p {
    margin: 0;
    font-size: 16px;
    font-style: normal;
    line-height: 20px;
}
p.s {
    margin: 0;
    font-size: 14px;
    line-height: 18px;
}
p.xs {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

a {
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    color: #CB00A1;
}
a:link {
    text-decoration-line: underline;
    color: #CB00A1;
}
a:visited {
    text-decoration-line: underline;
    color: #CB00A1;
}
a:focus {
    text-decoration-line: underline;
    color: #CB00A1;
}

.light {
    font-family: "Sofia Pro Light";
}
.bold {
    font-family: "Sofia Pro Bold";
}
.semibold {
    font-family: "Sofia Pro SemiBold";
}

label {
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    line-height: 24px;
    color: #409;
}
.input_box{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    
    width: 100%;
    background: #FFFFFF;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid #E0E0E0;
}
input {
    width: 100%;
    
    background: #FFFFFF;
    -webkit-box-shadow: 0 0 0px 1000px #FFFFFF inset;
    -webkit-text-fill-color: #534B53;
    border: none;
    outline: none;

    font-family: "Sofia Pro Light";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    color: #231F20;
}
input::placeholder {
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    color: #534B53;
    -webkit-text-fill-color: #534B53;
}
.input_box img{
    cursor: pointer;
}
input:focus {
    /* border: 3px solid #002F6C;
    -webkit-box-shadow: 0 0 8px 1000px #F7F7F7 inset; */
}
input:hover {
    /* -webkit-box-shadow: 0 0 0px 1000px #F7F7F7 inset; */
}
input:read-only {
    background: transparent;
    -webkit-box-shadow: none !important;
    border: 3px solid transparent !important;
    padding: 10px 20px;
    border: none;
    outline: none;
}
.input_incorrect {
    background: #FEF5F7;
}

textarea {    
    width: 100%;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #231F20;
}
textarea::placeholder{
     color: #838283;
} 

.checkbox_box{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
}
.checkbox_box img{
    cursor: pointer;
}

.incorrect {
    visibility: hidden;
    margin-top: -12px;

    font-family: Montserrat;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #ED1C24 !important;
}
.field_incorrect {
    background: #FEF5F7;
    border: 2px solid #F1223E;
}
.field_incorrect input{
    background: #FEF5F7;
    -webkit-box-shadow: 0 0 0px 1000px #FEF5F7 inset;
}

.button {
    display: flex;
    padding: 12px 56px;
    justify-content: center;
    align-items: center;
    gap: 10px;

    width: fit-content;
    border-radius: 40px;
    background: #409;
    cursor: pointer;

    font-family: "Sofia Pro SemiBold";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    white-space: nowrap;
    line-height: 24px;
    color: #FFFFFF;
}
.button:hover {
    background: #CB00A1;
}
.button.disabled {
    border: 2px solid #E0E0E0;
    background: #F4F3F6;
    pointer-events: none;

    color: #E0E0E0;
}

.secondary_button {
    display: flex;
    padding: 12px 56px;
    justify-content: center;
    align-items: center;
    gap: 10px;

    width: fit-content;
    border-radius: 40px;
    border: 2px solid #409;
    background: #FFFFFF;
    cursor: pointer;

    font-family: "Sofia Pro SemiBold";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    color: #409;
}
.secondary_button:hover {
    background: #FFEBFB;
    border: 2px solid #CB00A1;
    color: #CB00A1;
}
.secondary_button.disabled {
    background: #FFF;
    border: 2px solid #E0E0E0;
    pointer-events: none;

    color: #E0E0E0;
}

.logo_texto{
    display: flex;
    align-items: end;
    justify-content: start;
    gap: 64px;

    margin-top: auto;
    margin-bottom: 30px;
    padding: 0 85px;
}

.section {
    width: 100%;
    padding: 0 40px 40px 40px;
}

.modal{
    background: #061d416b;
}
/* .modal-dialog{
    max-width: 624px;
} */
.modal-content{
    gap: 20px;

    padding: 20px 40px;
    border-radius: 12px;
}
.modal-header{
    padding: 0;
    border: none;
}
.modal-body{
    display: flex;
    flex-direction: column;
    gap: 20px;

    padding: 0;
}
.modal-footer{
    justify-content: center;
    gap: 20px;

    padding: 0;
    border: none;
}

#principal_title{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 15px;
}
#title {
    font-family: "Sofia Pro Bold";
    font-size: 59.985px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    background: linear-gradient(90deg, #009681 0%, #00B0B9 35.58%, #0085CA 64.42%, #CB00A1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#title img{
    vertical-align: baseline;
}
#subtitle{    
    font-family: "Sofia Pro Regular";
    font-size: 29.992px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #26005A;
}

.add_calendar_content_links{
    display: none;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 25px;

    position: absolute;
    width: 240px;
    height: fit-content;
    top: 45px;
    left: 30px;
    padding: 20px;
    background-color: #FFFFFF;
    box-shadow: 0px 36px 10px 0px rgba(37, 48, 105, 0.00), 0px 23px 9px 0px rgba(37, 48, 105, 0.01), 0px 13px 8px 0px rgba(37, 48, 105, 0.03), 0px 6px 6px 0px rgba(37, 48, 105, 0.04), 0px 1px 3px 0px rgba(37, 48, 105, 0.05);
    border: solid 1px #D8DBE9;
    border-radius: 12px;
    z-index: 999;
}
.add_calendar_link{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}
.add_calendar_link a{
    font-family: "Sofia Pro Regular";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: #26005A;
    text-decoration: none;
}

#close_profile p{
    font-size: 18;
    color: #CB00A1;
}
#profile_container{
    display: none;
    align-items: stretch;
    justify-content: start;
    flex: auto;
    gap: 25px;

    position: absolute;
    top: -110vh;
    bottom: 110vh;
    left: 0;
    width: 100%;
    /* height: calc(100% - 290px); */
    background: #F7F9FC;
    padding: 40px 85px;
    border-top: 4px solid;
    border-bottom: 4px solid;
    border-image: linear-gradient(
        90deg,
        #009681 0%,
        #00B0B9 35.58%,
        #0085CA 64.42%,
        #CB00A1 100%
    );
    border-image-slice: 1;    
    z-index: 99999;

    -webkit-transition: bottom 1s ease, top 1s ease;
    transition: bottom 1s ease, top 1s ease;
}
#profile_left{
    display: flex;
    flex-direction: column;
    gap: 20px;

    width: 50%;
}

#profile_right{
    display: flex;
    flex-direction: column;
    gap: 20px;

    width: 50%;
}
.disabled_field{
    display: none;
}
#name_edit{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#name_edit div{
    cursor: pointer;
}
#buttoms_edit{    
    display: none;
    align-items: center;
    justify-content: center;
    gap: 28px;
}
.privacy_policy_text{
    display: flex;
    align-items: end;
    justify-content: start;
    gap: 64px;

    
    margin-bottom: 30px;
}
.privacy_policy_text p, .privacy_policy_text_mobile p{
    color: #5A5A5A;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.privacy_policy_text p a, .privacy_policy_text_mobile p a{
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.privacy_policy_text_mobile{
    display: none;
}

.alert_chat{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    width: 100%;
    background: #F3F3F3;
    padding: 12px;
}
.alert_chat p{
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #231F20;
}
.alert_chat img{
    cursor: pointer;
}

.alert_questions{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    width: 100%;
    background: #F4F3F6;
    padding: 12px;
}
.alert_questions p{
    font-size: 14px;
    line-height: 18px;
    color: #26005A;
}
.alert_questions img{
    cursor: pointer;
}


@media (max-width: 1024px) {
    #profile_container{
        flex-direction: column;

        height: calc(100vh - 66px);
        padding: 20px 15px;
        overflow: auto;
    }
    #profile_left{
        width: 100%;
    }
    #profile_right{
        gap: 15px;
        width: 100%;
    }
}

@media (max-width: 520px) {
    body {
        padding-bottom: 20px;
    }

    h1 {
        font-family: Montserrat;
        font-size: 36px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.11;
        letter-spacing: normal;
        text-align: center;
        color: #002F6C;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-family: Montserrat;
        font-size: 21px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.1;
        letter-spacing: normal;
        text-align: center;
        color: #002F6C;
    }

    input:read-only {
        border-radius: 10px;
        border: 1px solid #CCC !important;
    }

    #title {
        hyphens: auto;
        overflow-wrap: break-word;
    }

    #profile_container{
        flex-direction: column;

        height: calc(100vh - 66px);
        padding: 20px 15px;
        overflow: auto;
    }
    #profile_left{
        width: 100%;
    }
    #profile_right{
        gap: 15px;
        width: 100%;
    }
}
