body {
    margin: 0px;
    padding: 0px;
}

ul.resp-tabs-list, p {
    margin: 0px;
    padding: 0px;
}

.resp-tabs-list li {
	font-family: var(--title-font);
    display: inline-block;
    padding: 13px 15px;
    margin: 0 4px 0 0;
    list-style: none;
    cursor: pointer;
    float: left;
	font-size: var(--h1);
    line-height: 1.5;
    color: #D0D0D0;
    transition: all 0.4s linear;
}

.resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    clear: left;
}

h2.resp-accordion {
    cursor: pointer;
    padding: 5px;
    display: none;
}

.resp-tab-content {
    display: none;
    padding: 15px;
}

.resp-tab-active {
	/*border: 1px solid #5AB1D0 !important;*/
	border-bottom: none;
	margin-bottom: -1px !important;
	padding: 12px 14px 14px 14px !important;
	/*border-top: 4px solid #5AB1D0 !important;
	border-bottom: 0px #fff solid !important;*/
	background-color: #005aa7 !important;
	color: #fff !important;
}

.resp-tab-active {
    border-bottom: none;
    background-color: #fff;
}

.resp-content-active, .resp-accordion-active {
    display: block;
}

.resp-tab-content {
    border: 1px solid #c1c1c1;
	border-top-color: #5AB1D0;
}

h2.resp-accordion {
	font-family: var(--title-font);
	font-size: var(--h1);
    line-height: 1.5;
	font-weight: var(--weight400);
    color: #D0D0D0;
    transition: all 0.4s linear;
	background-color: transparent !important;
	position: relative
}

h2.resp-accordion:after {
	content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(
90deg
, rgb(185, 185, 185) 0%, #fff 100%);
}
h2.resp-accordion:last-child:after { display: none;}
h2.resp-tab-active {
    position: relative;
	z-index: 1;
	font-size: 60px;
    line-height: 1;
    font-weight: var(--weight400);
    color: var(--red) !important;
    padding-bottom: 20px;
}

h2.resp-tab-title:last-child {
    border-bottom: 12px solid #c1c1c1 !important;
    background: blue;
}

/*-----------Vertical tabs-----------*/
.resp-vtabs ul.resp-tabs-list {
    width: 100%;
}

.resp-vtabs .resp-tabs-list li {
    display: block;
    margin: 0 0 4px;
    cursor: pointer;
    float: none;
	font-size: var(--h1);
    line-height: 1.5;
    color: #D0D0D0;
    transition: all 0.4s linear;
	background-color: transparent !important;
}
.resp-vtabs .resp-tabs-list li:hover{
	background-color: transparent !important;
	color: #ba1f1f !important;
    padding-left: 10px;
}
.resp-vtabs .resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    width: 100%;
    min-height: 70vh;
    border-radius: 4px;
    clear: none;
}

.resp-vtabs .resp-tab-content {
    border: none;
    word-wrap: break-word;
}

.resp-vtabs li.resp-tab-active {
	position: relative;
	z-index: 1;
	font-size: var(--font72);
    line-height: 1;
    font-weight: var(--weight400);
    color: var(--red) !important;
    padding-bottom: 20px;
	
}
.resp-vtabs li.resp-tab-active:hover {
	color: #ba1f1f;
    padding-left: 10px;
}

.resp-arrow {
   width: 0;
    height: 0;
    float: right;
    margin-top: 6px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #c1c1c1;
}

h2.resp-tab-active span.resp-arrow {
    border: none;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 7px solid #ba1f1f;
}

/*-----------Accordion styles-----------*/
h2.resp-tab-active {
    background: #DBDBDB;/* !important;*/
}

.resp-easy-accordion h2.resp-accordion {
    display: block;
}

.resp-easy-accordion .resp-tab-content {
    border: 1px solid #e2e2e2;
}

.resp-easy-accordion .resp-tab-content:last-child {
    border-bottom: 1px solid #e2e2e2;/* !important;*/
}

.resp-jfit {
    width: 100%;
    margin: 0px;
}

.resp-tab-content-active {
    display: block;
}

h2.resp-accordion:first-child {
    border-top: 0;/* !important;*/
}

/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media only screen and (max-width: 767px) {
    ul.resp-tabs-list {
        display: none;
    }

    h2.resp-accordion {
        display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    }

    .resp-vtabs .resp-tab-content {
        border: 0;
    }

    .resp-vtabs .resp-tabs-container {
        border: none;
        float: none;
        width: 100%;
        min-height: 100px;
        clear: none;
    }

    .resp-accordion-closed {
        display: none !important;
    }

    .resp-vtabs .resp-tab-content:last-child {
        border-bottom: 1px solid #c1c1c1 !important;
    }
	.resp-tab-content {
    padding: 40px 0px 20px;
}
}