/* Index */
.rgpd-section-container {
    height: 200px;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
.rgpd-section-container:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.rgpd-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
    height: 100%;
    width: 100%;
}
.rgpd-section:hover {
    transform: scale(1.2);
}
.rgpd-section .overlay {
    display: none;
}
.rgpd-section:hover .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    color: white;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    padding: 5px;
    font-size: 20px;
    font-weight: bold;
    text-align:center;
}

/* Privacy Policy */
.privacy-policy-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.privacy-policy-container .note-editable {
    height: 500px!important;
}
.privacy-policy-container .back-btn {
    color: white;
}

/* Data Types */
.data-type-categories-container .data-type-category {
    background-color: white;
    border-left: 5px solid #3faf92;
    padding: 10px;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,0.1);
    transition: all 0.5s;
}

.data-type-categories-container .data-type-category:hover {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.data-type-categories-container .data-type-category .data-type-category-title {
    color: #3faf92;
    font-size: 2.5em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}
.data-type-categories-container .edit-icons {
    display: none;
    align-items: center;
    justify-content: flex-end;
}
.data-type-category-title:hover .edit-icons, .data-type:hover .edit-icons {
    display: flex!important;
}

.data-type-categories-container .edit-icons i {
    font-size: 18px;
    cursor: pointer;
    transition: all 0.5s;
    color: #3faf92;
}
.data-type-categories-container .edit-icons i:hover {
    color: rgb(255, 81, 0);
}
.data-type-categories-container .data-type-category .data-type .data-type-name {
    font-weight: bold;
}
.data-type-categories-container .data-type-category .data-type .data-type-description {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(73, 73, 73);
    text-align: justify;
}
.actions-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.button-action {
    border-radius: 50px;
    background-color: #3faf92;
    color: white;
    height: 60px;
    width: 85px;
    font-size: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s;
}
.button-action:hover {
    background-color: rgb(255, 81, 0);
}
#popup-layout {
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 998;
    display: none;
}
.popup {
    position: fixed;
    top: 15%;
    left: 25%;
    width: 50%;
    /* height: 50%; */
    background-color: white;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,0.1);
    z-index: 999;
    padding: 25px;
    display: flex;
    flex-direction: column;
    display: none;
}
.popup h2 {
    color: #3faf92;
    font-size: 2.5em;
    font-weight: bold;
}
.popup .input-row {
    display: flex;
    align-items: center;
}
#cookies-banner {
    position: fixed;
    width: 80%;
    padding: 15px;
    padding-bottom: 40px;
    border-radius: 20px;
    bottom: 20px;
    left: 10%;
    z-index: 10000;
    text-align: justify;
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.4);
    display: none;
}
#cookies-banner #close-cookies-banner {
    position: absolute;
    right: -15px;
    top: -15px;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.7);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6), 0 0 1em rgb(7, 7, 49);
    cursor: pointer;
    transition: all 0.5s;
}
#cookies-banner #close-cookies-banner:hover {
    transform: rotate(180deg);
}
#cookies-details {
    width: 80%;
    left: 10%;
}
#cookies-details h2 {
    font-size: 2em;
    margin-bottom: 1em;
}
#cookies-details h3 {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 1em;
}
.white-box {
    background: #ffffff;
    padding: 25px;
    margin-bottom: 35px;
}
#close-cookies-details-layout {
   position: absolute;
   right: 20px;
   top: 20px;
}
#close-cookies-details-layout i {
   color: #3faf92;
   cursor: pointer;
}
#accept-all-cookies {
   position: absolute;
   right: 10px;
   bottom: 10px;
   padding: 5px 10px;
   background-color: rgb(255, 135, 37);
   color: white;
   border-radius: 25px;
   cursor: pointer;
}