/* Google Font Import - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root{
    /* ===== Colors ===== */
    --body-color: #E4E9F7;
    --sidebar-color: #FFF;
    --primary-color: #695CFE;
    --primary-color-light: #F6F5FF;
    --toggle-color: #DDD;
    --text-color: #3b3b3b;
    --OrgChartLineColor: var(--OrgChartLineColor);;
    /* --text-color: #707070; */

    --sidebarbgcolor: #11101d;
    --indiicatorcolor: rgb(241, 241, 240);

    /* ====== Transition ====== */
    --tran-02: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.4s ease;
    --tran-05: all 0.5s ease;
} 

body{
    min-height: 100vh;
    background-color: var(--body-color);
    transition: var(--tran-03);
}

::selection{
    background-color: var(--primary-color);
    color: #fff;
}

body.dark{
    --body-color: #18191a;
    --sidebar-color: #242526;
    --primary-color: #3a3b3c;
    --primary-color-light: #3a3b3c;
    --toggle-color: #fff;
    --text-color: #ccc;
}


/* ===== Sidebar ===== */
 .sidebar{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    padding: 10px 14px;
    background: var(--sidebar-color);
    transition: var(--tran-03);
    z-index: 100;  
}
.sidebar.close{
    width: 88px;
opacity: 1 !important;
}

.sidebar.close .nav-links{
    overflow: visible;
  }

/* ===== Reusable code - Here ===== */
.sidebar li{
    height: 35px;
    list-style: none;
    display: flex;
    align-items: center;
    margin-top: 5px;
    padding: 0px;
}

.sidebar header .image,
.sidebar .icon{
    min-width: 60px;
    border-radius: 6px;
}

.sidebar .icon{
    min-width: 60px;
    border-radius: 6px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.sidebar .text,
.sidebar .icon{
    color: var(--text-color);
    transition: var(--tran-03);
    cursor: pointer;
}

.sidebar .text{
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 1;
}
.sidebar.close .text{
    opacity: 0;
}
/* =========================== */

.sidebar header{
    position: relative;
}

.sidebar header .image-text{
    display: flex;
    align-items: center;
}
.sidebar header .logo-text{
    display: flex;
    flex-direction: column;
}
header .image-text .name {
    margin-top: 2px;
    font-size: 18px;
    font-weight: 600;
}

header .image-text .profession{
    font-size: 16px;
    margin-top: -2px;
    display: block;
}

.sidebar header .image{
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar header .image img{
    width: 40px;
    max-height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

.sidebar header .toggle{
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%) rotate(180deg);
    height: 25px;
    width: 25px;
    background-color: var(--primary-color);
    color: var(--sidebar-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: var(--tran-03);
}

body.dark .sidebar header .toggle{
    color: var(--text-color);
}

.sidebar.close .toggle{
    transform: translateY(-50%) rotate(0deg);
}

.sidebar .menu{
    margin-top: 5px;
}

.sidebar li.search-box{
    border-radius: 6px;
    background-color: var(--primary-color-light);
    cursor: pointer;
    transition: var(--tran-03);
}

.sidebar li.search-box input{
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    background-color: var(--primary-color-light);
    color: var(--text-color);
    border-radius: 6px;
    font-size: 17px;
    font-weight: 500;
    transition: var(--tran-03);
}
.sidebar li a{
    list-style: none;
    height: 40px;
    background-color: transparent;
    display: flex;
    align-items: center;
    /* height: 100%; */
    width: 100%;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--tran-03);
    cursor: pointer;
}

.sidebar li a:hover{
    background-color: var(--primary-color);
    transition: var(--tran-03);
}
.sidebar li a:hover .icon,
.sidebar li a:hover .text{
    color: var(--sidebar-color);
    transition: var(--tran-03);
}
body.dark .sidebar li a:hover .icon,
body.dark .sidebar li a:hover .text{
    color: var(--text-color);
    transition: var(--tran-03);
}

.sidebar .menu-bar{
    height: calc(100% - 55px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: scroll;
}
.menu-bar::-webkit-scrollbar{
    display: none;
}
.sidebar .menu-bar .mode{
    border-radius: 6px;
    background-color: var(--primary-color-light);
    position: relative;
    transition: var(--tran-03);
}

.menu-bar .mode .sun-moon{
    height: 35px;
    width: 60px;
}

.mode .sun-moon i{
    position: absolute;
}
.mode .sun-moon i.sun{
    opacity: 0;
}
body.dark .mode .sun-moon i.sun{
    opacity: 1;
}
body.dark .mode .sun-moon i.moon{
    opacity: 0;
}

.menu-bar .bottom-content .toggle-switch{
    position: absolute;
    right: 0;
    height: 100%;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
}
.toggle-switch .switch{
    position: relative;
    height: 22px;
    width: 40px;
    border-radius: 25px;
    background-color: var(--toggle-color);
    transition: var(--tran-03);
}

.switch::before{
    content: '';
    position: absolute;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    background-color: var(--sidebar-color);
    transition: var(--tran-04);
}

body.dark .switch::before{
    left: 20px;
}

.home{
    position: absolute;
    top: 0;
    top: 0;
    left: 250px;
    height: 100vh;
    width: calc(100% - 250px);
    background-color: var(--body-color);
    transition: var(--tran-03);
    overflow-x: auto;
}
.home .wrapper{
    /* font-size: 30px; */
    font-weight: 500;
    color: var(--text-color);
    padding: 12px 15px;
}

.sidebar.close ~ .home{
    left: 88px;
    height: 100vh;
    width: calc(100% - 78px);
}
body.dark .home .wrapper{
    color: var(--text-color);
}

.sidebar .menu ul{
    background-color: var(--sidebar-color);
    position: absolute;
    width: 236px;
    transition: var(--tran-03);
    overflow: hidden;
    padding-bottom: 10px;
}

.sidebar.close .menu ul{
    position: absolute;
    width: 74px;
    overflow: hidden;
}


.sidebar .menu ul .indicator{
    position: absolute;
    top: 16px;
    right: -12px;
    height: 36px;
    width: 25px;
    background: var(--body-color);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform:rotate(270deg);
    transition: var(--tran-03);
  }
  .menu ul .indicator::before{
    content: "";
    position: absolute;
    left: -16px;
    bottom: 50%;
    height: 22px;
    width: 20px;
    background: none;
    border-bottom-right-radius: 20px;
    box-shadow: 0 10px 0 var(--body-color);
    transition: var(--tran-03);
  }
  .menu ul .indicator::after{
    content: "";
    position: absolute;
    right: -16px;
    bottom: 50%;
    height: 22px;
    width: 20px;
    background: none;
    border-bottom-left-radius: 20px;
    box-shadow: 0 10px 0 var(--body-color);
    transition: var(--tran-03);
  }


  .sidebar .profile-details{
    position: static;
    bottom: 0;
    width: var(--sidebarsize);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0;
    margin-top: 10px;
    transition: all 0.5s ease;
    z-index: 1;
  }
  .sidebar.close .profile-details{
    background: none;
  }
  .sidebar.close .profile-details{
    width: 78px;
  }
  .sidebar .profile-details .profile-content{
    display: flex;
    align-items: center;
  }
  .sidebar .profile-details img{
    height: 52px;
    width: 52px;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 1px 0 1px;
    background: none;
    transition: all 0.5s ease;
border: 1px solid
  }
  .sidebar.close .profile-details img{
    padding: 10px;
  }
  .sidebar .profile-details .profile_name,
  .sidebar .profile-details .job{
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
  }
  .sidebar.close .profile-details i,
  .sidebar.close .profile-details .profile_name,
  .sidebar.close .profile-details .job{
    display: none;
  }
  .sidebar .profile-details .job{
    font-size: 12px;
  }

  .table{
    background-color: var(--sidebar-color);
    color: var(--text-color) !important;
    transition: var(--tran-03);
  }

  img.OVERVIEW_FOTO {
    max-height: 100px;
    /* width: auto; */
    max-width: 100%;
    border-radius: 5px;
    /* border: 1px solid; */
    object-fit: contain;
}

.table-hover tbody tr:hover {
    /* color: var(--toggle-color) !important;
    background-color: var(--primary-color-light); */
    font-weight: normal !important;
    color: var(--text-color) !important;
    opacity: 1;
    text-decoration: none;
    transition: var(--tran-03);
}

.table th, .table td{
    position: relative !important;
}

.table-hover tbody tr:hover td:first-child::before {
    content:"";
    position: absolute;
    width: 5px;
    height: -webkit-fill-available;
    background-color: var(--text-color);
    top:0;
    left:0;
    transition: var(--tran-03);
}

.table-hover tbody tr:hover td:last-child::before {
    content:"";
    position: absolute;
    width: 5px;
    height: -webkit-fill-available;
    background-color: var(--text-color);
    top:0;
    right:0;
    transition: var(--tran-03);
}

button.accordion-button {
    min-width: 166px;
    text-align: left;
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 5px;
}

.def-text-color {
    color: var(--text-color) !important;
}

input[type="checkbox"].toggle {
    opacity: 0;
    position: absolute;
    left: -9000px;
    top: -9000px;
  }
  
  input[type="checkbox"].toggle + label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  input[type="checkbox"].toggle + label::before {
    content: "";
    width: 2em;
    height: 1em;
    background-color: hsl(0, 80%, 90%);
    border-radius: 1em;
    margin-right: .25em;
    transition: background-color 200ms ease-in-out;
  }
  
  input[type="checkbox"].toggle + label::after {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: "\2715";
    font-size: .5em;
    height: .9em;
    left: .2em;
    width: 1.8em;
    height: 1.8em;
    background-color: hsl(0, 80%, 60%);
    color: white;
    border-radius: 1em;
    transition: background-color 200ms ease-in-out, transform 200ms ease-in-out;
  }
  
  input[type="checkbox"].toggle:focus + label::before {
    outline: 1px solid black;
  }
  
  input[type="checkbox"].toggle:checked + label::before {
    background-color: hsl(100, 70%, 90%);
  }
  
  input[type="checkbox"].toggle:checked + label::after {
    content: "\2713";
    transform: translateX(100%);
    background-color: hsl(100, 70%, 60%);
  }
  
  input[type="checkbox"].toggle:disabled + label {
    color: #777;
  }
  
  input[type="checkbox"].toggle:disabled + label::before {
    background-color: #CCC;
  }
  
  input[type="checkbox"].toggle:disabled + label::after {
    background-color: #777;
  }

  label.form-check-label {
      font-size: 25px;
  }

  .AlbumWrapper {
      display: grid;
      gap: .25rem;
      margin-top: 1rem;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      /* grid-template-columns: repeat(auto-fill,minmax(150px,1fr)); */
  }

  .AlbumWrapper  > img {
      border: 1px solid;
  }

  .AlbumsWrapper {
    display: grid;
    gap: .25rem;
    margin-top: 1rem;
    grid-template-columns: repeat(auto-fill,minmax(150px,1fr));
}
  .AlbumsWrapper > div {
      border: 1px solid;
      text-align: center;
      margin:5px;
      cursor: pointer;
  }

  .back-btn{
    float:left;
    margin-right: 0.5rem;
    height: 2rem;
    padding-left: 5px !important;
    padding-right: 5px !important;
    padding-top: 4px !important;
    
  }
  .back-btn > i {
   font-size: 1.5rem;
}

.table .Past{
    /* text-decoration:line-through; */
    opacity: 0.75;
}

.table .Next{
    opacity: 1.0;
    font-weight: bolder;
}

table#SiteOverzicht tbody tr {
    cursor: pointer;
}

/* table#SiteOverzicht tr >th:first-child{
    display:none;
} */

.Ingelogged {
display:none;
}

.Guestbook {
 display: grid;
 gap: 1rem;
 margin-top: 1rem;
 grid-template-columns: repeat(auto-fill,minmax(350px,1fr));
}

.Guestbook_Item {
border: 1px solid;
}

.Guestbook_Item .Guestbook_Image {
    background-color: #CCC;
    width: 75px;
    height: 75px;
    border-radius: 50%;
}

.Guestbook_Item >:nth-child(1){
    grid-area: image;
}
.Guestbook_Item >:nth-child(2){
    grid-area: time;
    text-align: right;
    font-size: small;
    background-color: #adadad2e;
    padding: 0.2rem;
}
.Guestbook_Item >:nth-child(3){
    grid-area: name;
    background-color: #adadad2e;
    padding: 0.2rem;
    white-space: nowrap;
}
.Guestbook_Item >:nth-child(4){
    grid-area: message;
    text-align: left;
    padding: 0.2rem;
    white-space: pre-line;
}

.Guestbook_Item{
    display:grid;
    grid-template-areas: 'image name time'
    'image message message';
    gap: 0rem;
    grid-template-columns: 75px;
    grid-template-rows: 40px;
    overflow: hidden;
}

.Guestbook_Item_Message > img{
    max-width: 250px;
}

.AddMessage{
    margin-top:1rem;
}

div#StamboomWrapper {
    text-align: center;
    display: flex;
}

.orgchart {
    text-align: center;
    height: calc(100vh - 100px);
}

.orgchart .node .title img{
    width: 23px;
    height: 23px;
    border-radius: 50%;
    margin-right: 4px;
    border: 1px solid;
    object-fit: cover;
}

.orgchart .node .title{
    text-align: left !important;
    height: 25px !important;
    line-height: 25px !important;
    padding-right: 5px !important;
    /* width: 150px !important; */
}

.orgchart .node .title.gender_F{
    background-color:#683787cd
}

.orgchart .node .title.gender_M{
    background-color:#375987cd
}

.orgchart .NodeWrapper_1 {
 padding-top: 10px;
 padding-bottom: 10px;
}

.orgchart > ul > li > ul li > .node:has(> .NodeWrapper_1)::before {
    height: 24px;
}

.orgchart .nodes.vertical .NodeWrapper_1{
    padding-top: 0px;
    padding-bottom: 0px;
}

.orgchart:not(.l2r) .NodeWrapper_2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    border: 2px solid var(--OrgChartLineColor);
    padding: 0.5rem;
}

.orgchart.l2r .NodeWrapper_2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    border: 2px solid var(--OrgChartLineColor);
    padding: 0.5rem;
}


.orgchart:not(.l2r) .NodeWrapper_3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    border: 2px solid var(--OrgChartLineColor);
    padding: 0.5rem;
}

.orgchart.l2r{
    position: inherit !important;
}

.orgchart.l2r .NodeWrapper_3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    border: 2px solid var(--OrgChartLineColor);
    padding: 0.5rem;
}

.orgchart.l2r .CustomNode{
    height: 137px;
    width: 40px;
}

.orgchart.l2r .node, .orgchart.r2l .node{
    width: auto !important;
    height: auto !important;
}

.orgchart.l2r .NodeWrapper_1, .orgchart.l2r .NodeWrapper_2{
   padding-top: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 10px !important;
    padding-right:10px !important ;
}


.modal-content{
    background: var(--sidebar-color) !important;
    color: var(--text-color)!important;
}

.modal-content .modal-header, .modal-content .modal-footer {
    background: var(--body-color)!important;
    color: var(--text-color)!important;
}
input#EDIT_FAMILY_MEMBERS_ID,input#EDIT_FAMILY_MEMBERS_ID_SINGLE {
    display: none !important;
}


#EDIT_FAMILY_MEMBERS_IMAGE{
    width: 30px;
    border-radius: 50%;
    border: 1px solid;
}

.avatar.foto_Familieleden {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid;
}

div#MainContent .btn{
    margin-bottom: 5px;
}

.Birthday{
    border: 2px solid orange;
    border-radius: 5px;
}

#h3_PageName{
    /* position: fixed; */
    z-index: 10;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(2px);
    border-radius: 5px;
    display: none;
    /* width: calc(100% - 220px); */
}

.ChartOptionsGroup{
    position: fixed;
    bottom:20px;
    z-index: 10;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(2px);
    margin-left: -15px;
}

.bottom-content{
    z-index: 0;
    background-color: var(--sidebar-color);
    transition: var(--tran-03);
}

.ADDMEMBERSHIP {
    background-color: #d7d7d787;
    position: absolute;
    right: 15px;
    padding: 5px;
    border: 1px solid;
    border-radius: 5px;
    cursor: pointer;
    z-index: 11;
}

.PendingApprovalWrapper{
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 5;
    font-size: 12px;
}
.PendingApprovalWrapper .PendingApprovalItem{
 border: 1px solid var(--text-color);
 color:var(--text-color);
 border-radius: 5px;
 margin-top:10px;
 overflow: hidden;
 transition: var(--tran-03);
 filter:drop-shadow(1px 1px 2px);

}
.PendingApprovalWrapper .PendingApprovalItem .Titel{
    background-color: var(--sidebar-color);
    transition: var(--tran-03);
    font-weight: bolder;
}
.PendingApprovalWrapper .PendingApprovalItem > div{
    padding-left: 5px;
    padding-right: 5px;
    background-color: var(--body-color);
}

.POEMS_TITLE {
    font-family: cursive;
    font-size: 2rem;
}

.POEMS_WRAPPER .POEMS_TEXT {
    white-space: pre-line;
    font-family: cursive;
    font-size: 1.25rem;
}

.AlbumWrapper > .ALBUM_FOTO{
    object-fit: cover;
    width: 100%;
    /*aspect-ratio: 1 / 1;*/
    transition: var(--tran-03);
     min-height: 175px;
     background-image: "uploads/SiteLogos/logo.jpg";
}

.AlbumWrapper > .ALBUM_FOTO:hover{
    aspect-ratio: unset;
    transition: var(--tran-03);
    
}

.ALBUMS_FOTO{
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 175px;
}

.agendatable .avatar.foto_Familieleden{
margin-right: 5px;
margin-bottom: 5px;
}

.agendatable #Agenda_Date{
    width: 137px !important;
    font-size: 12px;
  }
  
  .agendatable #Agenda_Time{
    width: 100px !important;
    font-size: 12px
  }

  .agendatable #Agenda_Title{
    /* width: 100px !important; */
    font-size: 12px
  }
  
  .agendatable #Agenda_Location{
    width: 135px !important;
    font-size: 12px
  }

 #ModalEditCell .modal-footer{
justify-content: space-between;
  }


  .GENDER_ERROR{
    color: red;
  }

 button.oc-export-btn{
    position: fixed;
    bottom: 20;
    right: 20;
    border-radius: 0.2rem;
    line-height: 1.5;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    color:#fff;
    background-color: #007bff;
    border-color: #007bff;
    margin-bottom: 5px;
    display: inline-block;
    user-select: none;
    font-weight: 400;
    border: 1px solid transparent;
 }

 .container-fluid{
    padding-right: 0px !important;
    padding-left: 0px !important;
 }

 div#ZoomContainer {
    position: fixed;
    z-index: 10;
}

.BLUR1{
    filter: blur(1px);
    border-radius: 3px;
}
.BLUR5{
    filter: blur(5px);
    border-radius: 3px;
}
.BLUR10{
    filter: blur(10px);
    border-radius: 3px;
}

div#TimeLine{
    /* position: absolute; */
    display: flex;
}

.large_wrapper {
    /* display: flexbox; */
}
    .large_wrapper .over{
        display: grid;
        grid-template-areas:
            'image title'
            'image text';
        gap: 1rem;
        grid-template-columns: 130px;
        overflow: hidden;
    }

    .over #h3_PageName{
        display: block;
    }

    .large_wrapper .over >:nth-child(1){
        grid-area: image;
    }

    .large_wrapper .over >:nth-child(2){
        grid-area: title;
    }

    .large_wrapper .over >:nth-child(3){
        grid-area: text;
    }

    #FamilieLeden_Wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        gap: 1rem;
      }
      
        #FamilieLeden_Wrapper .FamilieLidKaart {
            flex: 1 0 auto;
            /* max-width: 300px; */
            max-height: 200px;
            background-color: var(--sidebar-color);
            font-size: 12px;
            font-weight: lighter;
            padding: 5px;
            min-width: 300px;
            width: 300px;
            position: relative;
        }

          #FamilieLeden_Wrapper .FamilieLidKaart img.avatar {
            width: 23px;
            height: 23px;
            border-radius: 50%;
            margin-right: 4px;
            border: 1px solid;
            object-fit: cover;
          }

          #FamilieLeden_Wrapper .FamilieLidKaart .LidHeader img.avatar {
            width: 35px;
            height: 35px;
        }

.VeldNaam{
    text-decoration: underline;
    padding-right: 3px;
}

.MaleColor{
    background-color: lightblue;
}

.FemaleColor{
    background-color: lightpink;
}

.LidInfo, .LidDatums, .LidPartner, .Ouders {
    margin-bottom: 3px;
}

.FamilieLidKaart .LidHeader {
    font-size: 14px;
}

.FamilieLidKaart.HIDDEN_CARD {
    display: none;
}

.FamilieLidKaart .Kinderen {
    line-height: 28px;
}

.LaatsteUpdate {
    text-align: right;
    font-size: 10px;
    margin-bottom: -5px;
}

.FamilieLidKaart span.Overleden {
    float: right;
}

.EditLid {
    height: 15px;
    width: 15px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}

.EditLid:after {
content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 30px 0;
  border-color: transparent #608A32 transparent transparent;
  right: 0;
  top: 0;
  position: absolute;
}

#FamilieLeden_Wrapper .bxs-edit:before {
    content: "\ed9b";
    z-index: 10 !important;
    position: absolute;
    top: 2px;
    font-size: 15px;
}

.FamilieLidKaart {
    cursor: default;
}

span#Edit_Content_Single_HelpText {
    display: block;
}

.EditSinglePlus {
    cursor: pointer;
}

.EditSinglePlus:hover {
    opacity: 0.8;
}

.EditLid:hover {
    opacity: 0.8;
}

body{
    overflow: hidden;
}