/* Lookup config (with fallback if config is wrongly configured)  */
/*--------------------------------------------------------------
modern-normalize v1.1.0
--------------------------------------------------------------*/
*,::after,::before{box-sizing:border-box}html{line-height:1.15;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;box-sizing:border-box}body{margin:0;font-family:system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji'}hr{height:0;color:inherit}abbr[title]{text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,'Liberation Mono',Menlo,monospace;font-size:1em}cite,dfn,em,i{font-style:italic}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}embed,iframe,object{max-width:100%}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}



/*--------------------------------------------------------------
Fonts
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');


/*--------------------------------------------------------------
CSS Variables
--------------------------------------------------------------*/
:root {
    --main-font: 'Roboto', sans-serif;
    --background-color: #F4F4F4;
    --accent-color: #ED2939;
    --base-color: #C4C4C4;

}

/*--------------------------------------------------------------
Elements
--------------------------------------------------------------*/
html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background: var(--background-color);
    color: #666;
    font-family: var(--main-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.618;
}

::-moz-selection {
    background: var(--base-color);
    color: #fff;
}

::selection {
    background: var(--base-color);
    color: #fff;
}

hr {
    background: #eee;
    border: 0;
    height: 1px;
    margin-bottom: 20px;
}

ul,
ol {
    margin: 0 0 20px 20px;
    padding: 0;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin: 0 0 20px;
}

ul ul,
ol ol {
    margin: 0 0 0 40px;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 20px 20px;
}

img {
    height: auto;
    max-width: 100%;
}

p {
    margin: 0 0 20px;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

pre {
    background: #eee;
    color: #333;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 100%;
    overflow: auto;
    padding: 20px;
}

embed,
iframe,
object {
    max-width: 100%;
}

figure {
    margin: 30px 0;
}

/* Tables */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 4px;
    border-left: 1px solid #F3F6F9;
    border-right: 1px solid #F3F6F9;
    overflow: hidden;
    border-radius: 10px;
}

table thead {
    background: #3D8EC3;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-align: left;
    background-color: var(--base-color);
}

table thead th {
    padding: 10px 20px 10px;
}

.list_all_subscriptions th:first-child{
    padding-left: 40px;
    border-radius:10px 0 0 0;
}

.list_all_subscriptions th:last-child{
    border-radius:0 10px 0 0;
}

.list_all_subscriptions tr:last-child td:first-child{
    border-radius:0 0 0 10px;
}
  
.list_all_subscriptions tr:last-child td:last-child{
    border-radius:0 0 10px 0;
}

table tbody {
    font-size: 15px;
}

table tbody tr {
    background: #fff;
}

table tbody tr:nth-of-type(2n) {
    background: #F3F6F9;
}

table tbody td {
    padding: 10px;
}

table.greyed-out {
    opacity: 0.5;
}

#checkbox-grid.greyed-out {
    opacity: 0.5;
}

/* Blockquote */
blockquote {
    background: #fff;
    box-shadow: 2px 2px 10px 0 rgba(0,0,0,0.15);
    border-radius: 4px;
    padding: 40px 100px 40px 40px;
    margin: 30px 0;
}


blockquote > p {
    color: #333;
    font-size: 21px;
    font-weight: 300;
    line-height: 33px;
    margin: 0;
}

blockquote > p:before {
    content: '“';
    display: block;
    color: #3D8EC3;
    font-size: 140px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: -70px;
    pointer-events: none;
}

blockquote cite {
    color: #999999;
    margin: 20px 0 0;
    font-size: 15px;
    display: block;
    line-height: 1.618;
}

blockquote cite:before {
    content: "— ";
}

#mobile_unsub_info {
    color: var(--base-color);
}



/*--------------------------------------------------------------
Animations
--------------------------------------------------------------*/
.transition, a, input, button, textarea {
    transition: all 0.3s ease;
}

.animate {
    opacity: 0;
}

.animate.fade-left {
    opacity: 0;
    transition: all 1s ease;
    -webkit-transform: translate3d(-50px, 0px, 0px);
    -ms-transform: translate3d(-50px, 0px, 0px);
    transform: translate3d(-50px, 0px, 0px);
}

.animate.fade-right {
    opacity: 0;
    transition: all 1s ease;
    -webkit-transform: translate3d(50px, 0px, 0px);
    -ms-transform: translate3d(50px, 0px, 0px);
    transform: translate3d(50px, 0px, 0px);
}

.animate.fade-up {
    opacity: 0;
    transition: all 1s ease;
    -webkit-transform: translate3d(0px, 50px, 0px);
    -ms-transform: translate3d(0px, 50px, 0px);
    transform: translate3d(0px, 50px, 0px);
}

.animate.in-view {
    opacity: 1;
    -webkit-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}

@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}



/*--------------------------------------------------------------
Helpers
--------------------------------------------------------------*/
/* General */
.ta-left { text-align: left; }
.ta-center { text-align: center; }
.ta-right { text-align: right; }

.float-left { float: left; }
.float-right { float: right; }

.static { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }

.none { display: none; }
.inline { display: inline; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }

/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }

/* Inline List */
.inline-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.inline-list li { margin-left: 20px; }
.inline-list li:first-child { margin-left: 0; }

/* Font Awesome */
.fa-icon-before:before,
.fa-icon-after:after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
}



/*--------------------------------------------------------------
Titles
--------------------------------------------------------------*/
h1, h2, h3, h4 {
    color: #333;
    margin: 0 0 30px;
    line-height: 1.2;
}

h1, .h1 {
    font-size: 32px;
    font-weight: 700;
}

h2, .h2 {
    font-size: 25px;
    font-weight: 600;
}

h3, .h3 {
    font-size: 20px;
    font-weight: 400;
}

h4, .h4 {
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 768px) {
    h1, .h1 { 
        font-size: 24px;
        margin: 0 0 20px;
    }
    h2, .h2 { 
        font-size: 20px;
    }
    h3 { font-size: 16px; }
}
@media (max-width: 480px) {
    h1, .h1 {
        font-size: 24px;
        text-align: left;
    }
    h2, .h2 {
        font-size: 16px;
    }
}



/*--------------------------------------------------------------
Links/Buttons
--------------------------------------------------------------*/
/* Links */
a {
    color: var(--base-color);
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: var(--accent-color);
}

/* Buttons */
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    outline: none;
    display: inline-block;
    position: relative;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    background: var(--accent-color);
    border: none;
    color: #fff;
    text-transform: none;
    border-radius: 11px;
    height: auto;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
}

#selectAllSub {
    font-size: 14px;
    margin: 0px;
    margin-bottom: 10px;
    font-weight: 600;
    background: var(--accent-color);
    border: none;
    color: #fff;
    text-transform: none;
    border-radius: 11px;
    padding: 5px 15px;
}

#unsub-all-btn {
    outline: none;
    display: inline-block;
    position: relative;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    background: #fff;
    border: none;
    color: var(--base-color);
    text-transform: none;
    border-radius: 11px;
    height: auto;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
}

.button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background: var(--accent-color);
    color: #fff;
    transform: scale(1.03);
}

#unsub-all-btn:hover {
    background: #fff;
    color: var(--accent-color)f;
}

button:disabled, button:disabled:hover {
  background-color: #d3d3d3;
  color: #666666;
  cursor: not-allowed;
}
#unsub-all-btn:disabled {
    background-color: #fff;
    color: #666666;
    cursor: not-allowed;
}
label.unsub-all {
    color: #333;
    font-size: 24px
}


/*--------------------------------------------------------------
Forms/Inputs
--------------------------------------------------------------*/
/* Inputs */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="search"],
textarea,
select {
    outline: none;
    display: inline-block;
    width: 100%;
    background: #fff;
    padding: 10px;
    border: 1px solid #eee;
    margin-bottom: 10px;
    line-height: 1.3;
}
select {
    height: 42.79px;
    border: 1px solid #eee !important;
}
.form-label{
  padding-bottom: 1px;
  margin-bottom: 2px;
}
input[type="number"] {
    padding: 10px;
    -moz-appearance: textfield;
}

input[type="search"] {
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
    border-color: #ccc;
}

textarea {
    height: 150px;
    resize: vertical;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

::-webkit-input-placeholder { color: #666; }
::-ms-input-placeholder { color: #666; }
::placeholder { color: #666; }

/* Custom Checkbox */

.checkbox-row:nth-child(odd) {
    background: #f5f5f5;
}

.custom-checkbox > span {
    display: block;
    line-height: 1;
    margin: 0 0 25px;
}

.custom-checkbox [type="checkbox"]:checked,
.custom-checkbox [type="checkbox"]:not(:checked) {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox [type="checkbox"]:checked + label,
.custom-checkbox [type="checkbox"]:not(:checked) + label {
    position: relative;
    padding-left: 0px;
    cursor: pointer;
    line-height: 1;
    display: inline-block;
    color: #333;
    font-size: 24px;
    margin: 0;
}

.label-generic, #do-not-track-div label {
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    line-height: 1;
    display: inline-block;
    color: #333;
    font-size: 22px;
    margin: 0;
}

#do-not-track-div label {
    padding-left: 50px;
}

.label-generic span, #do-not-track-div label span {
    display: block;
    font-size: 15px;
    line-height: 17px;
    color: #666;
    margin: 9px 0 0;
}

.custom-checkbox [type="checkbox"]:checked + label:before,
.custom-checkbox [type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border: 1px solid #c4c4c4;
    border-radius: 100%;
    background: #fff;
}

.custom-checkbox [type="checkbox"]:checked + label:before {
    border-color: var(--accent-color);
    box-shadow: inset 0px 0px 0px 1px var(--accent-color);
}

.custom-checkbox.greyed-out:not(#do_not_track_label) [type="checkbox"]:checked + label:not(#do_not_track_label):before {
    border-color: grey;
    box-shadow: inset 0px 0px 0px 1px grey;
}

.custom-checkbox [type="checkbox"]:checked + label:after,
.custom-checkbox [type="checkbox"]:not(:checked) + label:after {
    content: '';
    width: 18px;
    height: 18px;
    background: var(--accent-color);
    position: absolute;
    top: 6px;
    left: 6px;
    border-radius: 100%;
    transition: all 0.3s ease;
}

.custom-checkbox.greyed-out [type="checkbox"]:checked + label:not(#do_not_track_label):after,
.custom-checkbox.greyed-out [type="checkbox"]:not(:checked) + label:not(#do_not_track_label):after {
    content: '';
    background: grey;
}

.custom-checkbox [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}

.custom-checkbox [type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: scale(1);
}

.custom-checkbox [type="checkbox"] + label span {
    display: block;
    font-size: 20px;
    color: #666;
    margin: 12px 0 0;
}

.list_all_subscriptions th {
   min-width: 42px;
}

.list_all_subscriptions td {
   padding-left: 15px;
}

#checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-bottom: 20px;
}

#do-not-track-div {
    padding-top: 10px;
    padding-left: 20px;
}

@media (max-width: 961px) {
    .custom-checkbox [type="checkbox"]:checked + label,
    .custom-checkbox [type="checkbox"]:not(:checked) + label,
    .label-generic, #do-not-track-div label {
        font-size: 20px;
    }
    .label-generic {
       padding-left: 10px;
    }
    .custom-checkbox [type="checkbox"] + label span,
    .label-generic span, #do-not-track-div label span {
        font-size: 14px;
        margin: 10px 0 0;
    }
    .list_all_subscriptions td {
        padding-left: 2px;
    }
    .list_all_subscriptions th:first-child{
        padding-left: 10px;
    }
    
}
@media (max-width: 480px) {
    .custom-checkbox [type="checkbox"]:checked + label,
    .custom-checkbox [type="checkbox"]:not(:checked) + label,
    .label-generic, #do-not-track-div label {
        font-size: 16px;
    }
    .label-generic {
        padding-left: 10px;
    }
    .custom-checkbox [type="checkbox"] + label span {
        margin: 6px 0 0;
    }
    #checkbox-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

}

/*--------------------------------------------------------------
Accordion and Tabs
--------------------------------------------------------------*/
/* Main */
#accordion-tabs .nav-tabs {
    display:none;
}

.tab-pane {
    padding: 5px;
}

.nav-item a,
.nav-item a:hover {
    color: var(--accent-color);
}

h2 {
    color: var(--base-color);
}

@media(min-width:992px) {
    #accordion-tabs .nav-tabs {
        display: flex;
    }

    #accordion-tabs .card {
        border: none;
        margin-bottom: 10px;
    }

    #accordion-tabs .card .card-header {
        display:none;
    }  

    #accordion-tabs .card .collapse{
        display:block;
    }
}

@media(max-width:991px){
    /*
     * Changed selector to `.tab-content > .tab-pane` to override `.fade:not(.show)`
     * In BS4 Beta `.tab-pane`s were rendered hidden by just `.fade`
     */
    #accordion-tabs .tab-content > .tab-pane { 
        display: block;
        opacity: 1;
    }
}



/*--------------------------------------------------------------
Main
--------------------------------------------------------------*/
/* Main */
.site {
    background: var(--background-color);
    position: relative;
    z-index: 1;
}

@media (min-height: 992px) {
    .site {
        height: 100vh;
    }
}

.main-container {
    max-width: 1520px;
    width: 100%;
    height: 100%;
    padding: 0 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-container-thin {
    max-width: 1520px;
    width: 100%;
    height: 100%;
    padding: 0 150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.site{
 align-items: center;
    justify-content: center;
}
.main-container-new{
     
    align-items: center;
    justify-content: center;
    padding: 50px 50px 50px 50px;
    max-width: 1520px;
    margin-left: auto;
    margin-right: auto;
}

.main-inner {
    border-radius: 50px;
    overflow: hidden;
    width: 100%;
    margin: 80px 0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.main-inner-new {
    /*border-radius: 50px;*/
    border-radius: 0px !important;
    overflow: hidden;
      
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media (max-width: 961px) {
    .main-container {
        padding: 0 30px;
    }
    .main-container-thin {
        padding: 0 30px;
    }
   .main-container-new{
     padding: 50px 50px 50px 50px;  

}
    .main-inner {
        margin: 40px 0 60px 0;
    }
    #accordion-tabs {
        padding-left: 0px;
        padding-right: 0px;
    }
}
@media (max-width: 480px) {
    .main-container {
        padding: 0 10px;
    }
   .main-container-new{
     padding: 5px 5px 5px 5px;


   }
    .main-container-thin {
        padding: 0 10px;
    }
    .main-inner {
        margin: 10px 0 20px 0;
    }
    #accordion-tabs {
        padding-left: 0px;
        padding-right: 0px;
    }
}

/* Header */
.main-header {
    background: var(--base-color);
    padding: 30px 60px;
    width: 100%;
}

.header {
    padding: 5px;
    text-align:center;
    background: var(--base-color);
    font-size: 40px;
    color: #fff;
    font-family: var(--main-font);
}

.main-header .logo svg {
    color: #fff;
    max-height: 60px;
    width: auto;
}

@media (max-width: 768px) {
    .main-header .logo svg {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .main-header{
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

/* Content */
.main-content {
    background: #fff;
    padding: 40px 60px;
}

.preference-content {
    margin: 0 0 40px;
}

.preference-content p {
    font-size: 20px;
}

.preference-content .email {
    color: #215999;
    font-size: 24px;
    font-weight: 600;
}

#advanced-options a {
    color: #215999;
    font-size: 20px;
    font-weight: 600;
}

.footer-content {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .main-content {
        padding: 30px 40px;
    }
    .preference-content {
        margin: 0 0 20px;
    }
    .preference-content p {
        font-size: 16px;
    }
    .preference-content .email {
        font-size: 20px;
        word-wrap: break-word;
        margin: 0 0 10px;
    }
    #advanced-options a {
        font-size: 18px;
    }
  .body-text{
  text-align:center;
   }

}
@media (max-width: 480px) {
    .main-content {
        padding: 15px;
    }
    .preference-content p {
        font-size: 14px;
    }
    .preference-content .email {
        font-size: 20px;
    }
    #advanced-options a {
        font-size: 16px;
    }
    .footer-content {
        margin-top: 20px;
    }
    .footer-spacer {
        display: block;
    }
  .body-text{
  text-align:center;
   }
    
}

/* Form */
.button-container-extra-padding {
    padding-top: 10px;
}
.button-container {
    display: inline-block;
}

.preference-form button {
    margin: 20px 0 0;
}

input.birthdate, input.datepicker {
    background-color: #FFFFFF !important;
}

@media (max-width: 890px) {
    .button-container {
        display: block;
    }
    .preference-form button {
        width: 80%;
        margin: 30px auto 0 auto;
        display: block;
    }
    #unsub-all-btn {
        width: 80%;
        margin: 20px auto 0 auto;
        display: block;
    }
    .button-container-extra-padding {
        padding-top: 10px;
    }
}

@media (max-width: 768px) {
    .button-container {
        display: block;
    }
    .preference-form button {
        width: 80%;
        margin: 30px auto 0 auto;
        display: block;
    }
    #unsub-all-btn {
        width: 80%;
        margin: 20px auto 0 auto;
        display: block;
    }
    .button-container-extra-padding {
        padding-top: 10px;
    }
}
@media (max-width: 480px) {
    .preference-form button {
        width: 100%;
    }
    #unsub-all-btn {
        width: 100%;
        padding-top: 0px;
        margin-top: 35px;
    }
    .button-container-extra-padding {
        padding-top: 0px;
    }
}

/* Datepicker */
.card-header {
    background-color: white;
}

.day {
    padding: 4px;
}

.dow {
    padding: 4px;
    font-size: 15px;
}

.datepicker {
    font-size: 15px;
    width: 70%;
    max-width: 400px;
}

.datepicker .cw {
    font-size: 15px;
}

.datepicker table thead {
    background-color: var(--base-color);
}

.datepicker thead tr th {
    padding: 4px;
    background-color: var(--base-color);
}

.datepicker table tbody tr:nth-of-type(2n) {
    background-color: #F5F5F5;
}

.datepicker .active {
    background-color: red;
    color: green;
}

.datepicker .next {
    padding-left: 15px;
    padding-right: 15px;

}

.datepicker .next:hover {
    padding-left: 15px;
    padding-right: 15px;
    background-color: #63666A !important;
}

.datepicker .prev {
    padding-left: 15px;
    padding-right: 15px;

}

.datepicker .prev:hover {
    padding-left: 15px;
    padding-right: 15px;
    background-color: #63666A !important;
}

.datepicker-switch:hover {
    background-color: #63666A !important;
}

.datepicker table tr td.active:active,
.datepicker table tr td.active.highlighted:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active.highlighted.active {
    background-color: green;
}

.datepicker table tr td.active:active:hover,
.datepicker table tr td.active.highlighted:active:hover,
.datepicker table tr td.active.active:hover,
.datepicker table tr td.active.highlighted.active:hover,
.datepicker table tr td.active:active:focus,
.datepicker table tr td.active.highlighted:active:focus,
.datepicker table tr td.active.active:focus,
.datepicker table tr td.active.highlighted.active:focus,
.datepicker table tr td.active:active.focus,
.datepicker table tr td.active.highlighted:active.focus,
.datepicker table tr td.active.active.focus,
.datepicker table tr td.active.highlighted.active.focus {
    background-color: red;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover {
    background: rgb(44, 16, 15);
    text-shadow: none;
}

