body {
        font-family: "Montserrat", sans-serif;
    }

    .float-right {
        float: right;
    }

    .text-blue {
        color: #3860be;
    }

    .fs12 {
        font-size: 12px;
    }

    .fs13 {
        font-size: 13px;
    }

    .fs14 {
        font-size: 14px;
    }

    .fs15 {
        font-size: 15px;
    }

    .fs16 {
        font-size: 16px;
    }

    .fs18 {
        font-size: 18px;
    }

    .modal {
        display: block;
        position: fixed;
        z-index: 99999;
        padding-top: 100px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgb(0, 0, 0);
        background-color: rgba(0, 0, 0, 0.4);
    }

    .modal-content {
        background-color: #fefefe;
        margin: auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        max-width: 750px;
        margin: auto;
        color: #696969;
    }

    .modal-body a {
        color: #e20177;
    }

    .modal-footer button {
        color: #FFFFFF;
        background-color: #e20177;
        text-align: center;
        padding: 5px 10px;
        border-color: #e20177;
        outline: none;
        cursor: pointer;
    }

    #custom-cookie-modal {
        display: none;
    }

    #custom-cookie-modal .modal-body {
        padding-left: 0;
    }

    #custom-cookie-modal .nav-link {
        color: #696969;
        font-size: 13px;
        background-color: #8888881f;
        border-bottom: 1px solid #d7d7d7;
    }

    #custom-cookie-modal .nav {
        background-color: #8888881f;
        margin-left: -10px;
        font-weight: bold;
    }

    #custom-cookie-modal .nav .active {
        border-left: 10px solid #e20177;
        border-bottom: 1px solid #CCC;
        border-top: 1px solid #CCC;
        background-color: #FFFFFF;
    }

    #custom-cookie-modal .tab-details {
        font-size: 13px;
    }

    .toggle {
        position: relative;
        display: inline-block;
        width: 51px;
        height: 22px;
        background-color: rgba(255, 0, 0, 0.781);
        border-radius: 30px;
        border: 2px solid gray;
        transition: all 0.5s;
        filter: grayscale(100%);
    }

    .toggle:after {
        content: '';
        position: absolute;
        width: 18px;
        height: 16px;
        border-radius: 50%;
        background-color: #ffffff;
        top: 1px;
        left: 1px;
        transition: all 0.5s;
    }

    .checkbox:checked+.toggle::after {
        left: 27px;
    }

    .checkbox:checked+.toggle {
        background-color: #e20177;
        transition: all 0.5s;
        filter: none;
    }

    .checkbox {
        display: none;
    }

    .yes-no {
        margin-top: -6px;
        font-weight: bold;
        color: #ffffff;
        padding-left: 2px;
    }

    .switch-container p,
    .switch-container label {
        margin-bottom: 0;
    }