
.login-section {
    padding: 100px 0;
    background: #fff;
}

.login-container {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 5px;
    background: #fff;
    /*box-shadow: 1px 0 6px 0px #e7e7e7;*/
    padding: 25px 25px;
}

.login-container h2 {
    margin-bottom: 15px;
}

.login-container p {
    margin-bottom: 15px;
    font-size: 16px;
}

.login-cta {
    width: 100%;
    max-width: unset;
}

.folders-container {
    padding: 55px 0 80px 0;
    min-height: 70vh;
}

.folders-box {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 20px;
    justify-content: start;
}

.folder-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    padding: .8rem 1.3rem;
    font-size: 19px;
    text-decoration: unset;
    width: fit-content;
    background: #fff;
    border: 1px solid #dbdfea;
    border-radius: 4px;
    width: 23%;
    transition: 300ms;
}

.document-item:hover .folder-item, .folder-item:hover {
    border: 1px solid #103367;
}

.download-btn {
    position: absolute;
    bottom: 7px;
    right: 7px;
    font-size: 14px;
    background: #dbdfea;
    border-radius: 50%;
    padding: 0;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 300ms;
}

.download-btn:hover {
    color: #fff;
    background: #000;
}

.folder-item.odd {
    background: #f1f1f1;
}

.document-item {
    width: 23%;
    margin-right: 12px;
    margin-bottom: 12px;
}


.document-dots {
    position: absolute;
    top: 1px;
    right: 10px;
    cursor: pointer;
}

.document-dots:hover, .document-dots.active {
    color: #dbdfea;
}

.document-option {
    position: absolute;
    bottom: -13px;
    background: #dbdfea;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    right: 4px;
    padding: 2px 10px;
    border-radius: 4px;
    transition: 300ms;
}

.document-dots.active .document-option {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}

.document-option {
    color: #000 !important;
}

.document-option:hover {
    background: #103367;
    color: #fff !important;
}

.document-item  .folder-item {
    width: 100%;
}

.top-page-header {
    padding: 45px 0;
}

.login-section {
    padding: 55px 0;
}

.login-container {
    padding-top: 0;
}

#submitBtn {
    background: #103367;
}

#submitBtn:hover {
    background: #232323 !important;
}

.folder-item-title {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 10px;
}

.folder-item-title h5 {
    font-size: 19px;
    color: #232323;
    font-weight: 500;
}

.folder-item-title i {
    font-size: 30px;
    margin-right: 12px;
    color: #103367;
}

.folder-item-caption p {
    font-size: 14px;
    color: #8094ae;
}

.search-element {
    position: relative;
}

.search-element input {
    padding: 7px 11px;
    width: 450px;
    border-radius: 4px;
    border: 1px solid #dbdfea;
}


.support-page-body {
    background: #f5f6fa;
}

.search-icon {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.custom-btn {
    background: #fff;
    border-radius: 4px;
    color: #000;
    transition: 300ms;
    display: flex;
    align-items: center;
}

.custom-btn i {
    font-size: 18px;
}

.custom-btn p {
    font-size: 15px;
}

.lh-1 {
    line-height: 1;
}

.bread-crumbs {
    margin-top: 40px;
}

.bread-crumb {
    color: #5c5c5c !important;
    font-weight: 600;
    font-size: 17px;
    line-height: 1;
}

.bread-crumb a {
    color: #5c5c5c !important;
}

.bread-crumb a:hover {
    text-decoration: underline;
}

.custom-btn:hover {
    background: #103367;
    color: #fff;
}

.folder-item-title img {
    height: 30px;
    margin-right: 12px;
}

.profile-pic {
    height: 54px;
    border-radius: 50%;
    border: 1px solid #dbdfea;
    padding: 2px;
    margin-right: 8px;
    transform: translateY(3px);
}

.favorite-item {
    position: absolute;
    top: 3px;
    right: 6px;
    transform: scale(.9);
}

hr {
    background: #cacaca !important;
    
    margin: 12px 0 24px 0;
}


@media screen and (max-width: 800px) {
    .search-element input {
        width: 100%;
        margin-top: 10px;
    }
    
    .search-element {
        width: 100%;
    }
    
    .document-item {
        width: 100%;
    }
}