﻿body {
    font-family: Verdana,Tahoma,Arial,"Times New Roman",Sans-Serif;
    font-size: 100%;
    color: white;
    background-color: #D04EED;
    min-height: 100%;
    height: 100%
}
#halfContent1 {
    float: left;
    width: 48%;
    min-height: 300px;
    background-color: #D04EED;
    padding: 10px;
 
}

#halfContent2 {
    float: left;
    width: 48%;
    min-height: 300px;
    background-color: #D04EED;
    padding: 10px;
  
}
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
#footer {
    background: #D04EED;
   
    width: 100%;
}
th {
    background-color: #1A083F;
}
th, td {
    padding: 10px;
}
table {
    border: 2px solid black;
    border-collapse: collapse;
    border-spacing: 5px;
}
#TRdark, .TRdark {
    background-color: #B200FF;
}
#TRlight, .TRlight {
    background-color: #D870FF;
}
.footer2 {
    clear: both;
    position: relative;
    z-index: 10;
    height: 35px;
    margin-top: -70px;
    display: block;
    width: 100%;
    margin: 0;
    text-align: left;
    top: 0;
    left: 0;
}

.col5, .col5 a {
    color: #000;
    background-color: #B200FF;
    width: 1000px;
}

a {
    color: #4646FF;
}
    /* Unvisited link  */
    a:visited {
        color: #0000FF;
    }
    /* Visited link    */
    a:hover {
        color: #FFFFFF;
    }
    /* Mouse over link */
    a:active {
        color: #000000;
    }
/* Selected link   */
#copyright p {
    margin: 0;
    padding: 0;
}

#copyright {
    padding: 10px 0;
}

    #copyright p {
        margin: 0;
        padding: 0;
    }

.fl_left {
    width: 20%;
    float: left;
    text-align: center;
}

.clear {
    clear: both; /* this clears floats.  This would be used to cancel out a float's behavior on content below it.  */
}
#Prices {
    width: 30%; border: 1px solid black; margin: 5px; float: left; padding: 3px;
}
    #Prices tr.NegativePrice td {
        color: #FFD700;
        font-weight: bold;
    }
@media screen and (max-width:1050px) {
    /* this adjust 49 calendar.*/
 #halfContent1 {
            width: 96%;
        }

        #halfContent2 {
            width: 96%;
        }
}
@media screen and (max-width:950px){
    #Prices {
        width: 48%;
        border: 1px solid black;
        margin: 5px;
        float: left;
        padding: 3px;
    }
   }
    @media screen and (max-width:600px) {
        #Prices {
            width: 96%;
            border: 1px solid black;
            margin: 5px;
            float: left;
            padding: 3px;
        }       
    }
    /* responsive topnav */

    .topnav {
        overflow: hidden;
        background-color: #B200FF;
    }

        .topnav a {
            float: left;
            display: block;
            color: #f2f2f2;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
            font-size: 17px;
        }

    .active {
        background-color: #B200FF;
        color: white;
    }

    .topnav .icon {
        display: none;
    }

    .dropdown {
        float: left;
        overflow: hidden;
    }

        .dropdown .dropbtn {
            font-size: 17px;
            border: none;
            outline: none;
            color: white;
            padding: 14px 16px;
            background-color: inherit;
            font-family: inherit;
            margin: 0;
        }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 160px;
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
        z-index: 1;
    }

        .dropdown-content a {
            float: none;
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            text-align: left;
        }

    .topnav a:hover, .dropdown:hover .dropbtn {
        background-color: #D870FF;
        color: white;
    }

    .dropdown-content a:hover {
        background-color: #ddd;
        color: black;
    }

    /* Removed: .dropdown:hover .dropdown-content { display: block; }
       Dropdown open/close is now handled by JS click toggle via .dropdown.open */

    @media screen and (max-width: 600px) {
        .topnav a:not(:first-child), .dropdown .dropbtn {
            display: none;
        }

        .topnav a.icon {
            float: right;
            display: block;
        }
    }

    @media screen and (max-width: 600px) {
        .topnav.responsive {
            position: relative;
        }

            .topnav.responsive .icon {
                position: absolute;
                right: 0;
                top: 0;
            }

            .topnav.responsive a {
                float: none;
                display: block;
                text-align: left;
            }

            .topnav.responsive .dropdown {
                float: none;
            }

            .topnav.responsive .dropdown-content {
                position: relative;
            }

            .topnav.responsive .dropdown .dropbtn {
                display: block;
                width: 100%;
                text-align: left;
            }
    }
    /*FAQs*/
    /* Style the button that is used to open and close the collapsible content */
    .collapsible {
        background-color: #D870FF;
        color: white;
        cursor: pointer;
        padding: 18px;
        width: 100%;
        border: none;
        text-align: left;
        outline: none;
        font-size: 15px;
        font-weight: normal;
    }

        .collapsible:focus-visible {
            outline: 2px solid #fff;
            outline-offset: 2px;
        }

        /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
        .collapsible.active, .collapsible:hover {
            background-color: #B200FF;
        }

    /* Style the collapsible content. Note: hidden by default */
    .accordion-content {
        padding: 0 18px;
        display: none;
        overflow: hidden;
        background-color: #D04EED;
    }

    .collapsible:after {
        content: '\02795'; /* Unicode character for "plus" sign (+) */
        font-size: 13px;
        color: white;
        float: right;
        margin-left: 5px;
    }

    .collapsible.active:after {
        content: "\2796"; /* Unicode character for "minus" sign (-) */
    }

    /* FAQ page title */
    .page-title {
        text-align: center;
    }

    /* Click-open state for dropdown toggle */
    .dropdown.open .dropdown-content {
        display: block;
    }

    .topnav.responsive .dropdown-content {
        position: relative;
    }
/* Ad container */
.site-ad-container {
    width: 100%;
    text-align: center;
    margin: 24px 0;
}

/* Cookie Consent plugin overrides */
.cc-window {
    border-top: 3px solid #B200FF;
}

.cc-window .cc-link,
.cc-window .cc-link:visited {
    color: #D870FF;
}

.cc-window .cc-btn {
    border: none;
}

.cc-window .cc-btn:hover,
.cc-window .cc-btn:focus {
    background-color: #B200FF;
    color: #ffffff;
}
