@view-transition {
    navigation: auto;
}

/* Determine what gets captured when the type is forwards or backwards */
html:active-view-transition-type(forwards, backwards) {
    :root {
      view-transition-name: none;
    }
    article {
      view-transition-name: content;
    }
    .pagination {
      view-transition-name: pagination;
    }
  }
  
  /* Animation styles for forwards type only */
  html:active-view-transition-type(forwards) {
    &::view-transition-old(content) {
      animation-name: slide-out-to-left;
    }
    &::view-transition-new(content) {
      animation-name: slide-in-from-right;
    }
  }
  
  /* Animation styles for backwards type only */
  html:active-view-transition-type(backwards) {
    &::view-transition-old(content) {
      animation-name: slide-out-to-right;
    }
    &::view-transition-new(content) {
      animation-name: slide-in-from-left;
    }
  }
  
  /* Animation styles for reload type only */
  html:active-view-transition-type(reload) {
    &::view-transition-old(root) {
      animation-name: fade-out, scale-down;
    }
    &::view-transition-new(root) {
      animation-delay: 0.25s;
      animation-name: fade-in, scale-up;
    }
  }


body {
    display: flex;
    flex-direction: column;

    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;

    font-family: Montserrat;
    color: #061D41;
    background: transparent !important;
    font-style: normal;
}

h1 {
    margin: 0;    
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
}

h2 {
    margin: 0;

    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #061D41;
}

h3 {
    margin: 0;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #0071BB;
}

h4 {
    margin: 0;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #061D41;
}
h4 b{
    font-weight: 700;
}

p {
    margin: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

p.s {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

p.xs {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

a {
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    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: #0071BB;
}

a:link {
    text-decoration-line: underline;
    color: #0071BB;
}

a:visited {
    text-decoration-line: underline;
    color: #0071BB;
}

a:focus {
    text-decoration-line: underline;
    color: #0071BB;
}

.bold {
    font-weight: 600;
}

label {
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;
    color: #253069;
}
.input_box{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    
    width: 100%;
    background: #FFFFFF;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #0071BB;
}
input {
    width: 100%;
    
    background: #FFFFFF;
    -webkit-box-shadow: 0 0 0px 1000px #FFFFFF inset;
    -webkit-text-fill-color: #3A3A3A;
    border: none;
    outline: none;

    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #3A3A3A;
}
input::placeholder {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #5A5A5A;
    -webkit-text-fill-color: #5A5A5A;
}
.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;
}

textarea {    
    width: 100%;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #231F20;
}

.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 {
    border: 1px solid #ED1C24 !important;
}

.button {
    display: flex;
    padding: 12px 56px;
    justify-content: center;
    align-items: center;
    gap: 10px;

    width: fit-content;
    border-radius: 40px;
    background: #0071BB;
    box-shadow: 4px 8px 20px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;

    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #FFFFFF;
}
.button:hover {
    background: #004D80;
    box-shadow: none;
}

.secondary_button {
    display: flex;
    padding: 12px 56px;
    justify-content: center;
    align-items: center;
    gap: 10px;

    width: fit-content;
    border-radius: 40px;
    border: 2px solid #0071BB;
    background: #FFFFFF;
    box-shadow: 4px 8px 20px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;

    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #0071BB;
}
.secondary_button:hover {
    background: #CFE4F3;
    box-shadow: none;
}
.disabled {
    background: #EFF2F9;
    box-shadow: none;
    pointer-events: none;

    font-weight: 500;
    color: #BBCDEA;
}

.logo_texto{
    display: flex;
    align-items: end;
    justify-content: start;
    gap: 64px;

    margin-top: auto;
    margin-bottom: 30px;
    padding: 0 85px;
}
.logo_texto p, .logo_texto_mobile p{
    color: #5A5A5A;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.logo_texto p a, .logo_texto_mobile p a{
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.logo_texto_mobile{
    display: none;
}

.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;
}

.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: 27px;
    left: -25px;
    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: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: #253069;
    text-decoration: none;
}

#profile_container{
    display: flex;
    align-items: stretch;
    justify-content: start;
    flex: auto;
    gap: 25px;

    position: absolute;
    bottom: 110vh;
    left: 0;
    width: 100%;
    height: calc(100% - 35px);
    background: #F7F9FC;
    padding: 40px 85px;
    border-top: 1px solid #7FA7D8;
    border-bottom: 1px solid #7FA7D8;

    -webkit-transition: bottom 1s ease;
    transition: bottom 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 img{
    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: #F3F3F3;
    padding: 12px;
}
.alert_questions p{
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #231F20;
}
.alert_questions img{
    cursor: pointer;
}


@media (max-width: 1100px) {
    
}

@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: 24px;
    }

    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;
    }

    .logo_texto{
        display: none;
    }
    .logo_texto_mobile{
        display: block;
        padding: 0 15px;
    }
}
