﻿/*************************** Root Elements *********************************/
@media (min-width: 1365px) and (max-width: 1600px) {
    .fun-fact:last-child {
        display: flex;
    }
}

.section.gray {
    background: #f4f4f4;
}

.section-headline span {
    font-size: 16px;
}

.mandatory {
    color: red !important;
}

.custom-checkbox {
    display: flex;
    align-items: center;
}

.custom-checkbox input {
    width: 18px;
    height: 18px;
    box-shadow: none;
    background: transparent;
    margin-bottom: 0;
    cursor: pointer;
}

.custom-checkbox label {
    margin-bottom: 0;
    margin-left: 10px;
    cursor: pointer;
}

.dashboard-headline h3 span,
.dashboard-headline h3 {
    font-size: 22px;
    color: #333;
}

#logo img {
    height: 70px;
}

textarea {
    resize: none;
}

.button.dark:not(.ico):hover {
    background-color: #66676b !important;
}

a.button {
    padding: 6px 20px;
}

table.basic-table th {
    font-size: 14px;
}
table.basic-table th, table.basic-table td {
    padding: 5px 10px !important;
}
.form-select {
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
}
/*************************** Button *********************************/
.primary {
    padding: 0 16px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #FFFFFF;
    background: #b6373f;
    border: none;
    border-radius: 6px;
    box-shadow: 0px 8px 17px #b6373f, 0px 0px 2px #b6373f;
}

.primary:hover {
    color: #FFFFFF;
    background: #d1585f;
}

.primary:hover:active {
    color: #FFFFFFFF;
    background: #d1585f;
}

a.button.outline {
    background-color: white;
    color: #2a41e8;
    border: 1px solid #2a41e8;
    box-shadow: none;
    padding: 5px 18px;
}

a.button.outline:hover {
    box-shadow: 0 4px 12px rgba(42,65,232,0.15);
}

a.button:hover {
    background-color: #d1585f;
}

/*************************** Extra Elements *********************************/
.radiobtn-list td {
    padding: 0 10px;
    position: relative;
}

    .radiobtn-list td input[type="radio"] {
        display: inline-block;
        margin-bottom: 0;
        position: absolute;
        top: 5px;
    }

    .radiobtn-list td label {
        display: inline-block;
        margin-bottom: 0;
        margin-left: 20px;
    }


.file-upload-btn {
    height: 53px;
    padding-left: 0;
    width: 250px;
    font-size: 12px;
    margin-bottom: 0;
}

.datepicker-dropdown {
    z-index: 9999 !important;
}

.square-li li {
    list-style: square inside;
    margin-bottom: 10px;
}

.square-li li::marker {
    color: #ea7c11;
}

.page-wrapper {
    background: linear-gradient(135deg, #f5f5f5, #b6373f);    
}

/* 
    background: linear-gradient(135deg, #f9d2d4, #b6373f);
    background: linear-gradient(120deg, #ffe6e8, #b6373f);
    background: linear-gradient(135deg, #fcd5d7, #b6373f);
    background: linear-gradient(150deg, #fddede, #b6373f);
    background: linear-gradient(135deg, rgba(255, 240, 240, 0.8), #b6373f);

*/


/*************************** Static Table Design *************************************/
.table-container {
    width: 100%;
    margin: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 50px 200px 220px 120px 250px 1fr;
    grid-template-columns: 5% 25% 25% 10% 20% 15%;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.col-5-tbl .table-row {
    grid-template-columns: 20% 30% 20% 15% 10%;
}

.col-4-tbl .table-row {
    grid-template-columns: 15% 60% 15% 10%;
}

.col-3-tbl .table-row {
    grid-template-columns: 70% 20% 10%;
}

.table-header {
    background-color: #B6373F;
    color: white;
    font-weight: bold;
}

.table-body .table-row:hover {
    background-color: #f0f8ff;
    cursor: pointer;
}

.table-cell {
    padding: 4px 8px;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.view-file {
    padding: 5px 15px;
    background-color: gray;
    color: white;
    border-radius: 4px;
}

.view-file:hover, .view-file:focus, .view-file:active {
    color: white;
    background-color: #aaa5a5;
}

@media (max-width: 900px) {
    .table-row {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        display: block;
    }

    .table-cell {
        display: block;
        padding: 6px;
        border-bottom: 1px solid #eee;
    }

    .table-row:last-child .table-cell {
        border-bottom: none;
    }
}
/*************************** Static Table Design End *********************************/


/*************************** clickable card design (circular) ************************/

.document-list-wrapper ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.document-list-wrapper li {
    height: 140px;
    width: 46%;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 10px 0px;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    margin: 10px 2%;
    padding: 20px;
    transition: 0.4s;
}

.document-list-wrapper a {
    color: #666;
}

.document-list-wrapper a:hover, .document-list-wrapper a:focus, .document-list-wrapper a:active {
    outline: none;
    text-decoration: none;
    color: #999999;
}

.document-info-wrapper {
    display: flex;
    position: absolute;
    width: 90%;
    bottom: 15px;
    justify-content: space-between;
}

.document-info-wrapper p {
    margin-bottom: 0px;
}

.document-info-wrapper p:last-child {
    text-align: right;
}

.document-list-wrapper li:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 10px 0px;
}

/*************************** clickable card design (circular) ************************/


/*************************** gallery design ******************************************/
.gallery-items {
    list-style: none;
}

.gallery-items li {
    display: inline-block;
    text-align: center;
    width: 33%;
    vertical-align: top;
}

.gallery-item {
    margin: 0 8.5px 15px;
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;
}

.video-gallery .responsive {
    padding: 0 6px;
    flex: 0 0 33%;
    margin-bottom: 20px;
}

.video-gallery div.gallery {
    border: none;
}

/*************************** gallery design ******************************************/


/*************************** Footer *************************************************/
.footer-links a {
    color: #fff;
}

.footer-links a:hover {
    color: #bfc5dc;
}
/*************************** Footer End ********************************************/


.employee-gallery {
    display: flex;
    flex-wrap: wrap;
}

.employee-gallery label {
    color: #b6373f;
    font-size: 16px;
    padding: 5px 15px 0px 15px;
    margin-bottom: 0;
}

.employee-gallery p {
    margin-bottom: 0;
    font-size: 14px;
    padding: 0px 15px 5px 15px;
}