/* User info wrapper   ----------------------   ----------------------------------------------------------------------------   */
.user-info-wrapper {
    height: 100%;
}

html,
body {
    min-height: 100vh;
}


body {
    background-color: var(--body-bg-color);
    overflow-x: hidden;
    flex-direction: column;
    display: flex;
    margin: 0;
}


/* Agreements and Policies */
.terms-of-service,
.privacy-policy {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
    line-height: 1.6;
}


.terms-of-service h1,
.terms-of-service h2,
.privacy-policy h1,
.privacy-policy h2 {
    text-align: left;
    margin-top: 3rem;

    margin-bottom: 3rem;
    text-decoration-line: underline;
}


.terms-of-service p,
.terms-of-service ul,
.privacy-policy p,
.privacy-policy ul {
    text-align: left;
}


/* PROJECT LOGO LOGIN */
.project-name p {
    color: rgb(0, 0, 0);
    font-size: 18em;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-shadow: 5px 5px 7px rgba(72, 72, 72, 0.471);
    font-weight: bold;
    -webkit-text-stroke: 2px rgb(255, 255, 255);
}

/* PROJECT LOGO NAVBAR */
.navbar .navbar-logo {
    font-size: 3rem;
    font-weight: bold;
    -webkit-text-stroke: 1px rgba(197, 197, 197, 0.311);
}


/* SIGNUP CHECKBOX STYLING */
.policy-checkbox-field {
    display: flex;
    gap: 8px;
    width: 100%;
    align-items: flex-start;

}


.policy-checkbox-field input[type="checkbox"] {
    width: auto;
}


.policy-checkbox-field label {
    white-space: nowrap;
}

.policy-checkbox-field label::after {
    display: none;
}


/* Fixing user information date  --------------------------------------------------------------------------------------------------   */
.info-row {
    color: var(--cnt-text-color);
    display: grid !important;
    align-items: center;
    grid-template-columns: 150px 1fr;
    margin-bottom: 10px;
    gap: 10px;
}


.left {
    text-align: left;
    font-weight: bold;
    width: 150px;
}


.right {
    text-align: left;
    flex-grow: 1;
}


/* Div banners style in user profile page  --------------------------------------------------------------------------------------------------   */
.banner-style h4 {
    color: var(--cnt-text-color);
    border-bottom: 2px solid var(--cnt-text-color);
    padding-bottom: 5px;
    display: inline-block;
    width: 250px;
    text-align: center;

    margin-top: 3rem;
}


/* Container block from base. --------------------------------------------------------------------------------------------------   */
.container {
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 90%;
    max-width: 100%;
}


/* Setting the titles in basic templates. */
.container h1 {
    color: var(--cnt-text-color);
    margin-bottom: 30px;

}

/* p Elements in templates */
.container p {
    margin-top: 20px;
}


/* Gliphy icons setup  --------------------------------------------------------------------------------------------------   */
.icon-container {
    justify-content: center;
    justify-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    
}

.icon-container .profile-picture {
    min-width:  200px;
    min-height: 200px;
    max-width:  1000px;
    max-height: 1000px;  
}


.glyphicon-pencil {
    color: var(--cnt-text-color);
}


/* Homepage tags  --------------------------------------------------------------------------------------------------   */
.homepage-title h1 {
    width: 100%;
    font-size: 5vh;
    font-family: cursive;
    color: var(--cnt-text-color);
}


.present-drop h2 {
    color: var(--cnt-text-color);
}


.next-drop h2 {
    color: var(--cnt-text-color);
}



/* USERPAGE PROFILE PICTURE   --------------------------------------------------------------------------------------------------      clip-path: circle();*/
.profile-picture {
    justify-content: center;
    align-items: center;
    width: clamp(80px, 20vw, 150px);
    height: clamp(80px, 20vw, 150px);
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 5px var(--cnt-propic-shadow);
}


/* Login page  --------------------------------------------------------------------------------------------------   */
.login_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 30px;
    height: auto;
    padding: 30px;
}




/* Element Title!  --------------------------------------------------------------------------------------------------   */

.element-title {
    justify-content: center;
}

.element-title h1 {
    color: var(--cnt-text-color);
    text-decoration-line: underline;
}

.element-title h3 {
    color: var(--cnt-text-color);
}





/* TABLE WRAPPER --------------------------------------------------------------------------------------------------   */
.table-wrapper {
    width: 70%;
    transition: width 0.02s ease, box-shadow 0.02s ease;
    max-height: 700px;
    overflow: hidden; /*  Keeps overriding elements underneath the wrapper class.*/
    box-shadow: var(--cnt-information-date-shadow);
    border-radius: 40px;
}


.table-scroll {
    overflow-y: auto;
    max-height: 700px;    
}


/* TABLE SETUP */
.table-elements {
    table-layout: fixed;
    transition: box-shadow 0.3s ease;
    width: 100%;
    overflow-x: auto;
    color: var(--cnt-text-color);
    border-collapse: collapse;
    border-color: var(--cnt-border-color);
    margin: 0px auto;
    height: 50%;
    align-items: center;
    border-collapse: separate;
    border-spacing: 0 .5rem;
    overflow: visible;

}


.table-elements .col-number {
    width: 8%;
    white-space: nowrap;
}


.form-field-ntfs .btn-link {
    margin-left: 0%;
    padding: 0%;
}


.table-elements thead {
    border-radius: 50px;
}


/* Table Titles --------------------------------------------------------------------------------------------------   */
.table-elements thead {
    background: linear-gradient(
        to right,
        transparent,
        var(--cnt-image-gradient-left)
    );
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: var(--cnt-background-color-thead);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


.table-elements th {
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 1rem;
    text-align: center;
}


.table-elements td {
    white-space: nowrap;
    font-family: Arial, sans-serif;
    color: var(--cnt-text-color);
    padding: 1rem;
    text-overflow: ellipsis;
    overflow: visible;
    min-width: 100px;
}


.table-elements td,
.table-elements th {
    padding: 14px 18px;
}



.table-elements tbody tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
    background: var(--cnt-tabelements-hover);
}


.table-elements tbody td:first-child {
    border-radius: 15px 0 0 15px;    
}


.table-elements tbody td:last-child {
    border-radius: 0 15px 15px 0;    
}


/* GPLIPHY_ICON_REMOVE  */

.bi {
    font-size: 1.2rem;
}

.bi.bi-x-lg {
    color: var(--cnt-text-color);
    transition:
        transform .3s ease,
        filter .3s ease,
        color .3s ease;    
    display: inline-block;
    border-radius: 1px;
    outline: none;
    background: transparent;
    box-shadow: none;
    border: none;
}


.bi.bi-plus-lg {
    color: var(--cnt-text-color);
    transition:
        transform .3s ease,
        filter .3s ease,
        color .3s ease;    
    display: inline-block;
    border-radius: 1px;
    outline: none;
    background: transparent;
    box-shadow: none;
    border: none;
}



.icon-btn {
    padding: 0;
    margin: 0;
    border: 0;
    background: none;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}




.icon-btn,
.icon-btn:focus,
.icon-btn:focus-visible {
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
    left: 2px;
}


.bi.bi-plus-lg:hover,
.bi.bi-x-lg:hover {
    color: var(--cnt-text-color);
    transform: scale(1.3);
    text-decoration-line: none;
    /* outline: 2px solid red; */
}



/* HOMEPAGECARDS container  -------------------------------------------------------------------------------------------------*/
.container-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    margin-top: 5rem;    
    gap: 1rem;
}


.container-cards  .left-card {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    justify-content: flex-start;
    width: 70%;
    background-color: rgba(255, 255, 255, 0);
    text-decoration-thickness: 10px;
    text-decoration-style: solid;
    padding: 0;
    margin-left: -10px;
    gap: -2rem;
}


.container-cards .right-card {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    justify-content: flex-end;
    width: 70%;
    max-height: 100%;
    background-color: rgba(255, 255, 255, 0);
}


.container-cards .card-title {
    font-weight: 800;
    font-family: 'Raleway', sans-serif;
    color: var(--cnt-text-color);
    line-height:.8;
    letter-spacing:-.05em;
    margin-left: -20px;


    
}




.container-cards .left-card .information-when {    
    display: block;
    position: relative;
    display: inline-block;
    text-align: left;
    font-size: clamp(1.5rem, 20vw, 30rem);    
    color: var(--cnt-text-color);
    border-radius: 60px;
    margin-top: 0;
    width: 150%;    
}




.container-cards .left-card .information-when::after {    
    content: "";
    display: block;
    width: 100%;
    height: 6px;
    background-color: var(--cnt-text-color);
    margin-top: .3em;
} 


.container-cards .right-card .information-when::after {    
    content: "";
    display: block;
    width: 80%;
    height: 6px;
    background-color: var(--cnt-text-color);
    margin-top: .3em;
    margin-left: auto;
} 






.container-cards .right-card .information-when {
    display: block;
    text-align: right;
    font-size: clamp(1.5rem, 10vw, 20rem);    
    color: var(--cnt-text-color);
    border-radius: 60px;
    padding-right: 3%;
    margin-top: 2px;
    position: relative;
    width: 150%;
    left: -50%;
    margin-left: auto;
}




.container-cards .left-card .information-date {
    display: block;
    text-align: left;
    font-size: clamp(1.5rem, 5vw, 12rem);
    width: 150%;
    color: var(--cnt-text-color);
    border-radius: 60px;
    padding-top: 0px;
    padding-left: 3%;
    margin-top: 2px;
}


.container-cards .right-card .information-date {
    display: block;
    text-align: right;
    position: relative;
    width: 150%;
    left: -50%;
    margin-left: auto;
    font-size: clamp(1.5rem, 5vw, 12rem);
}


/* .container-cards .information-when  */
.container-cards .information-date {
    display: block;
    text-align: left;
    width: 100%;
    color: var(--cnt-text-color);
    border: 3px solid none;
    padding-top: 0px;
    padding-left: 3%;
    transition: background-color 1.6s, margin 0.8s, width 2s;
    border-radius: 60px;
    box-shadow: var(--cnt-information-date-shadow);
    margin-top: 3rem;
    margin-bottom: 3rem;
    transition: box-shadow .3s ease, transform .3s ease;
}   



.container-cards .left-card .card-title {
    display: block;
    text-align: left;
    margin: 5px;
    font-size: clamp(5rem, 25vw, 40rem);
    font-weight: 800;
    line-height: 0.72;
    letter-spacing: -0.04em;
}


.container-cards .right-card .card-title {
    display: block;
    text-align: right;
    margin: 0px;
    font-size: clamp(5rem, 25vw, 40rem);
    font-weight: 800;
    line-height: 0.72;
    margin-top: 10rem;
}



/* CATALOGUE CARDS container  -------------------------------------------------------------------------------------------------*/
.catalogue-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    padding: 2rem;
}


.catalogue-cards  .left-card {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-height: 100%;
    background-color: rgba(255, 255, 255, 0);
    text-decoration-thickness: 10px;
    text-decoration-style: solid;
    max-width: 80%;
}


.catalogue-cards .right-card {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    justify-content: flex-end;
    width: 80%;
    max-height: 100%;
    background-color: rgba(255, 255, 255, 0);
}


.catalogue-cards .right-card .information-date:hover {
    transform: translateX(-40px); /* move left */
    transition: transform 1s;
}


.catalogue-cards .left-card .information-date {
    display: block;
    text-align: left;
    font-size: clamp(1.5rem, 5vw, 10rem);
    width: 100%;
    color: var(--cnt-text-color);
    border: 3px solid none;
    padding-top: 0px;
    padding-left: 3%;
    transition: background-color 1.6s, margin 0.8s, width 2s;
    margin-top: 3rem;
    margin-bottom: 3rem;
}


.catalogue-cards .left-card .information-date:hover {
    border-color: none;
    transform: translateX(40px); /* move right */    
    transition: transform 1s;
}    



.catalogue-cards .left-card a {
    text-decoration: none;
    display: block;
    color: inherit;
}


.catalogue-cards .left-card a:hover {
    text-decoration: none;
}


.catalogue-cards .right-card .information-date {
    display: block;
    text-align: right;
    font-size: clamp(1.5rem, 5vw, 10rem);
    width: 100%;
    color: var(--cnt-text-color);
    border: 3px solid none;
    padding-top: 0px;
    padding-right: 3%;
    transition: background-color 1.6s, margin 0.8s, width 2s;
    margin-left: auto;
}


.catalogue-cards .information-date {
    border-radius: 0;
    background: none;
    box-shadow: none;
    border-bottom: 2px solid var(--cnt-text-color);
    padding: 1rem 0;
    margin: 2rem 0;
}


.catalogue-cards .right-card .information-date:hover {
    border-color: none;
    transform: translateX(-40px); /* move left */
    transition: transform 1s;
}


.catalogue-cards .right-card  a {
    text-decoration: none;
    display: block;
    color: inherit;
}


.catalogue-cards .right-card  a:hover {
    text-decoration: none;
}



/* ---------------------------------------------------------------------------------------------- */
/*Notifications button to activate/deactivate via a slider */
.bauble_box {
    display: flex;
    align-items: center;
    margin-right: 10%;
    width: 65%;
}


.bauble_box .bauble_label {
  background-position: 62px 5px;
  background-repeat: no-repeat;
  background-size: auto 5px;
  border: 0;
  border-radius: 50px;
  box-shadow: inset 0 5px 15px rgba(0,0,0,.4), 0 -1px 0px rgba(0,0,0,.2), inset 0 -1px 0px;
  cursor: pointer;
  display: inline-block;
  font-size: 0;
  height: 30px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 60px;
  margin: 2%;
  background: var(--cnt-slide-off-background);
  left: 0;
}


.bauble_box .bauble_label:before {
  background-color: rgba(255,255,255,.2);
  background-position: 0 0;
  background-repeat: repeat;
  background-size: 30% auto;
  border-radius: 50%;
  box-shadow: inset 0 -5px 25px var(--cnt-slide-off-element), 0 5px 10px rgba(0,0,0,.4);
  content: '';
  display: block;
  height: 30px;
  left: 5px;
  position: absolute;
  top: 0px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 30px;
  z-index: 2;
}

.bauble_box input.bauble_input {
  opacity: 0;
  z-index: 0;
  margin-left: 40px;
}


/* Checked */
.bauble_box input.bauble_input:checked + .bauble_label {
  background-color: var(--cnt-slide-on-background);
}


.bauble_box input.bauble_input:checked + .bauble_label:before {
  background-position: 150% 0;
  box-shadow: inset 0 -5px 25px var(--cnt-slide-on-element), 0 5px 15px rgba(0,0,0,.4);
  left: calc( 100% - 30px );
}


/* Detailed Sessions  -------------------------------------------------------------------------------------------------*/
.sessions-table {
    color: transparent;
}

.session-elements {
    width: 100%;
    border-collapse: collapse;
}

.session-elements th,
.session-elements td {
    padding: 12px;
    text-align: left;
    color: var(--cnt-text-color);
}

.session-elements td:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
    background: var(--cnt-tabelements-hover);   
    border-radius: 15px;
    margin: 5px 0 0 5px ;    
}




.session-elements tbody tr {
        transition:
        transform .3s ease,
        box-shadow .3s ease,
        background-color .3s ease;    
} 


.session-elements tbody td {
    border-bottom: 2px solid var(--cnt-propic-shadow);
} 



/* Detailed Sessions  -------------------------------------------------------------------------------------------------*/
.sessions-table {
    color: transparent;
}

.sessions-table {
    width: 100%;
    border-collapse: collapse;
}

.sessions-table th,
.sessions-table td {
    padding: 12px;
    text-align: left;
}

.sessions-table td:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
    background: var(--cnt-tabelements-hover);   
    border-radius: 15px;
    margin: 5px 0 0 5px ;    
}




.sessions-table tbody tr {
        transition:
        transform .3s ease,
        box-shadow .3s ease,
        background-color .3s ease;
        border-radius: 2px solid red;
} 


.sessions-table tbody td {
    border-bottom: 2px solid var(--cnt-propic-shadow);
} 