.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    vertical-align: middle;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 100px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.closebtn {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 36px;
    margin-left: 50px;
}

/* Styling for the dialog box */
.dialog-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.dialog-content {
    background-color: black;
    padding: 20px;
    border: 1px solid rgb(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    width: 500px;
}

.close-button {
    float: right;
    cursor: pointer;
}

.btn-submit {
    background: #3949ab;
    color: #fff;
}

.page-content > div:first-child {
    padding-top: 10rem;
}

.flex-1-1-0 {
    flex: 1 1 0;
}

.check-list ul {
    --icon-space: 1.3em;
    list-style: none;
    padding: 0;
}

.check-list ul > li {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.w-custom {
    width: 50%;
}

.post-thumb {
    /* height: 4rem; */
    text-align: center;
}


@media screen and (max-width: 480px) {
    .sidenav {
        z-index: 999;
        padding-top: 100px;
    }
    .sidenav a {
        font-size: 16px;
    }
    .closebtn {
        font-size: 36px;
    }
    .dialog-content {
        width: 350px;
    }
    .flex-1-1-0 {
        flex: 1 1 auto;
    }
    .w-custom {
        width: 100%;
    }
    
}
