:root {
    --color-checklist-hover: #dcf5ff;
    --color1: #1cbbfb;
    --color2: #eef8f8;
    --color3: #77b8d6;
    --color4: #06588B;
    --color5: #4ee8fc;
    --color6: #515d71;
    --color7: #0c2353;
    --color8: #2c90bb;
    --primary: #09549c;
}

/* Overwrite older bootstrap ul styling caused from checklist requiring older version of bootstrap */
ul {
    padding-left: 0 !important;
}

/* content */
.cleaningChecklist {
    padding: 80px 0 0;
    box-sizing: border-box;
}

.cleaningChecklist h1 {
    text-align: center;
    margin-bottom: 40px;
}

.customTabs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.customTabs li {
    width: calc(100% / 3);
}

.customTabs li button {
    width: 100%;
    font-weight: 600;
    font-size: 24px;
    color: #000;
    padding: 10px 20px;
    box-sizing: border-box;
    border: 1px solid #ddd !important;
    border-right: 0 !important;
    border-radius: 0 !important;
}

.customTabs li button:last-child {
    border-right: 1px solid #ddd !important;
}

.customTabs li button:hover {
    color: var(--color4) !important;
}

.customTabs li button.active {
    background: var(--color4) !important;
    color: #fff !important;
    border-color: var(--color4) !important;
}

.viewTab {
    border: 1px solid #ddd;
    border-top: 0;
    padding: 20px;
    box-sizing: border-box;
}

.tab-content h6 {
    text-align: center;
    margin-bottom: 24px;
}

.packageOptions {
    width: 100%;
}

.packageOptions .listOptions {
    height: 100%;
}

.packageOptions .listOptions .viewImg {
    overflow: hidden;
}

.packageOptions .listOptions .viewImg img {
    height: 200px;
    width: 100%;
    object-fit: fill;
}

.packageOptions .listOptions:hover {
    background: var(--color-checklist-hover);
}

.packageOptions .listOptions {
    -webkit-box-shadow: inset 0px 0px 1px 1px var(--color1);
    -moz-box-shadow: inset 0px 0px 1px 1px var(--color1);
    box-shadow: inset 0px 0px 1px 1px var(--color1);
    padding: 0px;
    box-sizing: border-box;
    border-radius: 15px 15px;
    overflow: hidden;
}

.packageOptions .listOptions .optionDetail {
    padding: 16px;
}

.packageOptions .viewImg {
    width: 100%;
}

.packageOptions h4 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 16px;
}

.packageOptions .optionItem {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.packageOptions .optionItem svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.packageOptions .optionItem p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    width: calc(100% - 30px);
}

.packageOptions h5 {
    font-size: 20px;
    margin-top: 40px;
    font-weight: 300;
    color: #949494;
}

/* max width 1024px */
@media (max-width: 1025px) {
    .packageOptions .listOptions .viewImg img {
        height: 150px;
    }
}

/* max width 991px */
@media (max-width: 992px) {
    .customTabs li button {
        font-size: 16px;
    }
}

/* max 768px */
@media (max-width: 768px) {
    .cleaningChecklist h1 {
        font-size: 36px;
    }
    .customTabs li button {
        font-size: 13px;
        padding: 8px;
    }
}

/* max 500px */
@media (max-width: 500px) {
    .cleaningChecklist h1 {
        font-size: 30px;
    }
    .customTabs li {
        width: 30%;
    }
    .customTabs li:last-child {
        width: 40%;
    }
    .customTabs li button {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .customTabs li button {
        height: 57px;
    }
}