@charset "utf-8";
/*--
	Add your style here
--*/

@media only screen and  (max-width: 540px) {
    .accordion {
        /* width: 1000px; */
        margin: 0px auto;
        color: black;
        background-color: #f2f2f2;
        padding: 0 0 !important;
    }
}
.menu-wrap {
        right:0 !important;
	-webkit-transform: translate3d(320px,0,0);
	transform: translate3d(320px,0,0);
	visibility:hidden;
}

.show-menu .menu-wrap,
.show-menu .menu-inner ,
.show-menu .morph-shape  {
        -webkit-transform: translate3d(-30px,0,0);
        transform: translate3d(-30px,0,0);
}
.show-menu .menu-wrap {
	right:0;
	opacity:1;
	visibility:visible;
}
.accordion {
    /* width: 1000px; */
    margin: 0px auto;
    color: black;
    background-color: #f2f2f2;
    /* padding: 45px 45px; */
}
.accordion .accordion-container {
    position: relative;
    margin: 10px 10px;
}

/* Positions the labels relative to the .container. Adds padding to the top and bottom and increases font size. Also makes its cursor a pointer */

.accordion .label {
    position: relative;
    padding: 10px 0;
    font-size: 18px;
    font-family: 'satoshi';
    font-weight: bold;
    color: #2759a5;
    cursor: pointer;
    text-align: left;
}
.accordion .label::before {
    content: '+';
    color: #a1999f;
    position: absolute;
    top: 50%;
    right: -5px;
    font-size: 30px;
    transform: translateY(-50%);
}

/* Hides the content (height: 0), decreases font size, justifies text and adds transition */

.accordion .content {
    position: relative;
    /* background: transparent !important; */
    height: 0;
    font-size: 18px;
    font-family: 'satoshi';
    text-align: justify;
    /* width: 900px; */
    overflow: hidden;
    transition: 0.5s;
    background: #f2f2f2 !important;
}

    /* Adds a horizontal line between the contents */

.accordion hr {
    width: 100;
    margin-left: 0;
    border: 1px solid #e6e6e6;
}
.accordion .accordion-container.active .content {
    height: 150px;
    background: #f2f2f2 !important;
}

/* Changes from plus sign to negative sign once active */

.accordion .accordion-container.active .label::before {
    content: '-';
    font-size: 30px;
    background: #f2f2f2 !important;
}

