﻿.accordion
{
    background-color: #033519;
    color: #ffffff;
    cursor: pointer;
    padding: 5px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 13px;
    transition: 0.4s;
    border-bottom: 1px solid #FFFFFF;
}

.accordion.active, .accordion:hover
{
    background: rgba(3, 53, 25,0.8);
    color: #ffffff;
}

.accordion:after
{
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
.acheaderselected
{
    content: "\2212";
    background: #000000;
    color: #FFFFFF;
    cursor: pointer;
    padding: 5px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    border: 0px;
    font-size: 13px;
}
.acheaderselected:after
{
    content: "\2212";
    float: right;
}
.accordion.active:after
{
    /*content: "\2212";*/
}

.panel
{
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.acccontent{
    color: White;
    background: rgba(3, 53, 25,0.8);
}
.acccontent a
{
    color: White;
    font-size: 12px;
    padding-left:20px;
}

.accLink
{
    padding-left: 0px;
}
.accLink1
{
    padding-left: 0px;
}
.accordionContent
{
    border: 1px solid #FFFFFFF;
    border-top: none;
    padding-left: 15px;
}
.more-less_plus, .more-less_minus
{
    float: right;
    padding-right: 10px;
    font-weight: bold;
}
.more-less_minus
{
    display: none;
}

/*---------------------------*/



.accordionHeaderSelected
{
    border: 1px solid #446099;
    color: white;
    background-color: #446099;
    font-family: Arial, Sans-Serif;
    font-size: 12px;
    font-weight: bold;
    padding: 2px;
    margin-top: 2px;
    cursor: pointer;
}



.accordionContent
{
    border: 1px dashed #446099;
    border-top: none;
}

.bg_main_color
{
    background: rgba(5,144,15,0.73);
}



#Accordion1
{
    display: none;
}
#Menu1
{
    display: block;
}
@media screen and (max-width: 768px)
{

    #Accordion1
    {
        display: block;
    }
    #Menu1
    {
        display: none;
    }
}

/*------------------------*/

.popup
{
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;
    background: rgba(0,0,0,0.75);
}

/* Inner */
.popup-inner
{
    margin-left: auto;
    margin-right: auto;
}
.popup-inner
{
    width: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0px 2px 6px rgba(0,0,0,1);
    border-radius: 3px;
    background: #fff;
}

/* Close Button */
.popup-close
{
    width: 30px;
    height: 30px;
    padding-top: 4px;
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 0px;
    transition: ease 0.25s all;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    border-radius: 1000px;
    background: rgba(0,0,0,0.8);
    font-family: Arial, Sans-Serif;
    font-size: 20px;
    text-align: center;
    line-height: 100%;
    color: #fff;
}

.popup-close:hover
{
    -webkit-transform: translate(50%, -50%) rotate(180deg);
    transform: translate(50%, -50%) rotate(180deg);
    background: rgba(0,0,0,1);
    text-decoration: none;
}

