   #cookie_modal {
		font-family: "Gabarito", sans-serif !important;
   }
   #cookie-settings-btn {
        position: fixed;
        bottom: 70px;
        left: 10px;
        z-index: 1051;
    }
	@media (max-width: 600px) {
		#cookie-settings-btn {
			position: fixed;
			bottom: -11px;
			left: 8px;
			z-index: 1051;
		}
	}
    #cookie_modal .tab-content {
		color: #000;
    }   
    #cookie_modal .modal-header {
		background-color: #eee;
    }    
	#cookie_modal .modal-title {
		font-weight: 900;
		color: #000;
    }
    #cookie_modal .nav-tabs .nav-item {
        margin-right: 5px;
		background-color: #eee;
    }
    #cookie_modal .nav-tabs .nav-item .active {
        border: 1px solid #999;
        border-bottom: 0px;
		background-color: #fff;
    }
    #cookie_modal a.nav-link {
        color: #61ae21;
    }
    #cookie_modal p {
        padding-left: 20px;
    }
	
    #cookie_modal button {
        border-radius: 50px;
    }
	
    #cookie_modal button.btn-success {
        background-color: #61ae21 !important;
        border-color: #61ae21 !important;
        color: #fff !important;
		font-weight: 600;
    }

    #cookie_modal button.btn-success:hover {
        background-color: #52901f !important;
        border-color: #4e7e34 !important;
        color: #fff !important;
    }

    #cookie_modal button.btn-outline-success {
        color: #000 !important;
        border-color: #000 !important;
        background-color: transparent !important;
		font-weight: 600;
    }

    #cookie_modal button.btn-outline-success:hover {
        background-color: #52901f !important;
        color: #fff !important;
        border-color: #52901f !important;
    }
    #cookie_modal .rotate {
        transition: transform 0.3s;
    }
    #cookie_modal .rotate.down {
        transform: rotate(180deg);
    }

    #cookie_modal .toggle-wrap {
        display: inline-block;
        position: relative;
    }

    #cookie_modal .toggle-checkbox {
        display: none;
    }

    #cookie_modal .toggle-label {
        width: 50px;
        height: 26px;
        background-color: #ccc;
        border-radius: 13px;
        position: relative;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    #cookie_modal .toggle-label::after {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        top: 3px;
        left: 3px;
        background-color: white;
        border-radius: 50%;
        transition: transform 0.3s;
    }

    #cookie_modal .toggle-checkbox:checked + .toggle-label {
        background-color: #61ae21;
    }

    #cookie_modal .toggle-checkbox:checked + .toggle-label::after {
        transform: translateX(24px);
    }