.cookie-form {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #555555;
    font-family: -apple-system, BlinkMacSystemFont, segoe ui, Helvetica, Arial, sans-serif, apple color emoji, segoe ui emoji, segoe ui symbol;
}

.cookie-form .cookie-modal-content .policy-box {
    border-top: 0;
}

.cookie-modal-overlay {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;

    opacity: 0;

    width: 100%;
    height: 100%;

    -webkit-transition: 1ms opacity ease;
    -moz-transition: 1ms opacity ease;
    -o-transition: 1ms opacity ease;
    transition: 1ms opacity ease;

    background: rgba(0, 0, 0, 0.6);
}

.cookie-modal {
    position: fixed;
    z-index: 99999;
    bottom: 0;
    left: 50%;

    color: #555555;
    background: #FFFFFF;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;

    font-family: -apple-system, BlinkMacSystemFont, segoe ui, Helvetica, Arial, sans-serif, apple color emoji, segoe ui emoji, segoe ui symbol;

    opacity: 0;

    width: 100%;
    min-width: 320px;

    -webkit-transition: 1ms opacity ease;
    -moz-transition: 1ms opacity ease;
    -o-transition: 1ms opacity ease;
    transition: 1ms opacity ease;

    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transition: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
}

.cookie-modal.setting-modal {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-form.setting-form.static {
    border: 0;
}

.cookie-modal.cookie-modal-open.cookie-modal-anchored {
    top: 20px;

    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transition: translate(-50%, 0);
    transform: translate(-50%, -0);
}

.cookie-modal.cookie-modal-open {
    opacity: 1;
}

.cookie-modal-overlay.cookie-modal-open {
    opacity: 1;
}

/* Close Button */
.cookie-modal-close
{
    background: #fcf5e8;
    font-family: Helvetica,Arial,sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 12px;

    position: absolute;
    top: 16px;
    right: 16px;
	border-radius: 4px;
    padding: 12px 10px;

    cursor: pointer;

    color: black;
    border: 0;
    outline: none;
}

.cookie-modal-close:hover
{
    background: opacity: 0.9;
}

.cookie-modal .cookie-modal-content {
    background: #fcf5e8;
    overflow: auto;
    font-size: 14px;
}

.cookie-modal .cookie-modal-content .text-holder {
    width: 70%;
    float: left;
}

.cookie-modal .cookie-modal-content p {
    padding: 20px;
    margin: 0;
    font-size: 14px;
}

.cookie-modal .cookie-modal-title {
    background: #fcf5e8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 24px 20px;
    font-size: 17px;
    font-weight: bold;

    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

.cookie-modal-footer {
    padding: 40px 20px;
    text-align: right;
    background: #fcf5e8;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;

    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.cookie-modal-overlay.fade-and-drop {
    display: block;
    opacity: 0;
}

.cookie-modal.fade-and-drop {
    
    opacity: 0;
    display: block;
}

.setting-modal.fade-and-drop.cookie-modal-open {
    bottom: 0 !important;
}

.cookie-modal.fade-and-drop.cookie-modal-open {
    bottom: -50px;
    opacity: 1;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
    -webkit-transition: 500ms top ease, 500ms opacity ease;
    -moz-transition: 500ms top ease, 500ms opacity ease;
    -o-transition: 500ms top ease, 500ms opacity ease;
    transition: 500ms top ease, 500ms opacity ease;
}

.cookie-modal.fade-and-drop {
    -webkit-transition: 500ms top ease;
    -moz-transition: 500ms top ease;
    -o-transition: 500ms top ease;
    transition: 500ms top ease;
}

.cookie-modal-overlay.fade-and-drop.cookie-modal-open {
    top: 0;
    opacity: 1;

    -webkit-transition: 500ms opacity ease;
    -moz-transition: 500ms opacity ease;
    -o-transition: 500ms opacity ease;
    transition: 500ms opacity ease;
}

.cookie-modal-overlay.fade-and-drop {
    -webkit-transition: 500ms top 500ms ease;
    -moz-transition: 500ms top 500ms ease;
    -o-transition: 500ms top 500ms ease;
    transition: 500ms top 500ms ease;
}

.cookie-modal-content .policy-box {
    display: inline-block; 
    float: left;

    border-top: 1px solid rgba(0, 0, 0, 0.1);

    width: 50%;
    min-height: 140px;
}

.cookie-modal-content .policy-box.last-box {
    margin-bottom: 1em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-form.setting-form.static .policy-box {
    border: 0;
}

.cookie-modal-content .policy-box.policy-box-full-width {
    display: block;
    width: 100%;
}

.cookie-modal-content .policy-box .policy-box-content-title {
    padding: 15px;
    font-weight: bold;
}

.cookie-modal-content .policy-box .policy-box-content {
    padding: 5px 15px;
    padding-bottom: 15px;
}

.cookie-btn {
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
    padding: 10px 35px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    outline: 0;
    cursor: pointer;

    -webkit-transition: opacity 150ms ease-in;
    -moz-transition: opacity 150ms ease-in;
    -o-transition: opacity 150ms ease-in;
    -ms-transition: opacity 150ms ease-in; 
    transition: opacity 150ms ease-in;
}

.cookie-btn.spacer-left {
    margin-left: 20px;
}

.cookie-btn.spacer-right {
    margin-right: 20px;
}
  
.cookie-btn.btn-green {
    background-color: #63ba5f;
    color: white;
}
  
.cookie-btn:hover,
a.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-modal-footer a {
    font-weight: 100;
    font-size: 14px;
    color: #008cba;
    text-decoration: none;
}

.cookie-modal-footer a:hover,
.cookie-modal-footer a:visited {
    text-decoration: none;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 46px; 
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cccccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    left: 4px;
    bottom: 3px;
    background-color: #FFFFFF;
    -webkit-transition: .4s;
    transition: .4s;
}

.toggle-switch input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

.slider {
    border-radius: 25px;
}

.slider:before {
    border-radius: 50%;
}

@media screen and (max-width: 700px) {
    .cookie-modal.fade-and-drop.cookie-modal-open {
        bottom: -69px;
    }

    .cookie-modal .cookie-modal-content .text-holder {
        width: 100%;
        float: none;
    }

    .cookie-modal-footer {
        padding: 20px;
        background: #fcf5e8;
        text-align: center;
    }

    .cookie-modal-content .policy-box {
        width: 100%;
    }

    .setting-modal .cookie-btn.spacer-left {
        margin-left: 0;
    }

    .cookie-modal-footer .responsive-link {
        display: block;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 500px) {
    .cookie-modal.fade-and-drop.cookie-modal-open {
        bottom: -79px;
    }
}

@media screen and (max-width: 335px) {
    .cookie-modal.fade-and-drop.cookie-modal-open {
        bottom: -88px;
    }
}

@media screen and (max-height: 900px) and (max-width: 700px) {
    .cookie-modal.setting-modal.fade-and-drop.cookie-modal-open {
        top: 40%;
        margin-bottom: 10px;
    }
}