* {
    box-sizing: border-box
}

/* Style the tab */
.calc_tab {
    float: left;
    background-color: #f1f1f1;
    width: 35%;
}

/* Style the buttons that are used to open the tab content */
.calc_tab [role="button"] {
    width: 100%;
    position: relative;
    cursor: pointer;
    color: #555;
    font-weight: 400;
    font-family: Noto Sans, Roboto, Helvetica, Arial, sans-serif !important;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    background: transparent;
    transition: 0.3s;
    /*padding-left: 30px;*/
    padding-left: 10px;
    padding-right: 10px;
    text-transform: uppercase;
    margin: 10px 0;
    min-height: 45px;
}

/* Change background color of buttons on hover */
.calc_tab [role="button"]:hover {
    font-weight: 700 !important;
}

/* Style the tab content */
.calc_tabcontent {
    float: left;
    width: 100%;
    border-left: none;
    display: none;
}

.calc_tabcontent.active {
    display: block;
}

/**
Tab menu *
*/
.tab-menu {
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
}

.tab-menu-item {
    padding: 10px;
    cursor: pointer;
}

.tab-menu-item.active {
    border-bottom: 2px solid #fc3;
}

/**
* Settings tabbed content
*/
.setting-tabbed-content {
    animation: fadeEffect 1s;
    /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Style the tab */
.setting-tabbed-content-buttons-holder {
    overflow: hidden;
    background-color: #fff;
    border-bottom: 1px solid #EEE;
    width: 100%;
}

/* Style the buttons that are used to open the tab content */
.setting-tabbed-content-buttons-holder button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 6px 16px;
    transition: 0.3s;
    position: relative;
}

/* Change background color of buttons on hover */
.setting-tabbed-content-buttons-holder button:hover {
    background-color: #fff;
}

/* Create an active/current tablink class */
.setting-tabbed-content-buttons-holder button.active {
    border-top: 1px solid #fc3;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}

.setting-tabbed-content {
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
}

/* ajanlatkeszito tablinks */
#ajanlatkeszito-tabs {
    display: flex;
    width: 100%;
    margin-top: 15px;
}

.ajanlat_tablinks {
    background: transparent !important;
    border: none;
    color: #ed7e6a;
    padding: 5px;
    border: 1px solid currentColor;
    border-bottom: none !important;
    min-width: 200px;
}

.ajanlat_tablinks:first-child {
    border-top-left-radius: 20px;
    border-right: none !important;
}

.ajanlat_tablinks:last-child {
    border-top-right-radius: 20px;
}

.ajanlat_tablinks.active {
    font-weight: bold !important;
    /*background: #ed7e6a!important;*/
    background: rgb(231, 78, 112);
    background: linear-gradient(90deg, rgba(231, 78, 112, 1) 15%, rgba(239, 178, 96, 1) 85%) !important;
    color: #FFFFFF !important;
    pointer-events: none;
}

.calc_ajanlat_tabcontent {
    border: 1px solid #ed7e6a;
    padding: 25px 20px;
    margin-bottom: 40px !important;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
}

/**
* Accordions
*/
.accordion {
    background: rgb(231, 78, 112);
    background: linear-gradient(90deg, rgba(231, 78, 112, 1) 15%, rgba(239, 178, 96, 1) 85%) !important;
    color: #FFF;
    cursor: pointer;
    padding: 5px 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 16px;
    margin-top: 40px;
    border-radius: 20px;
}

.accordion-active {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    /* background-color: #ccc;*/
}

.accordion:hover {}

.accordion-panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
}

/*
.accordion:after {
    content: '\02795';
    font-size: 13px;
    color: #FFF;
    float: right;
    margin-left: 5px;
}

.accordion-active:after {
    content: "\2796";
}
*/