body,h1,h2,h3,h4,h5,h6,p,a,span,label,input,li,ul,ol,div{
    font-family: 'Gilroy', sans-serif;
}

:root{
    --red: #FF0000;
    --gray: #F1F1F1;
    --blue: #0c2f33;
}

body{
    margin: 0;
    padding: 0;
}

::selection {
  background: var(--red);
  color: #fff;
}
::-moz-selection {
  background: var(--red);
  color: #fff;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {   
  border-color: rgba(255, 0, 0, 0.8) !important;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 0, 0, 0.6) !important;
  outline: 0 none !important;
}

a{
	transition: all 0.25s;
}

a:hover,
a:focus{
    text-decoration: none;
    outline: 0 none !important;
}

h1{
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 40px 0;
    line-height: 60px;
    color: #fff;
}


h2{
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 40px 0;
    line-height: 60px;
    padding-left: 15px;
    border-left: 4px solid var(--red);
}

h3{
    font-size: 35px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 20px 0;
    line-height: 35px;
    border-left: 2px solid var(--red);
    padding-left: 15px;
}

.bg{
	background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.clear{
    clear: both;
}

/* FORMS */

.form-control{
    border-radius: 0;
    border: 2px solid var(--blue);
    background: transparent;
    font-weight: bold;
}

.form-control::-webkit-input-placeholder{
    color: var(--blue);
}
  
.form-control:-ms-input-placeholder{
    color: var(--blue);
}
  
.form-control::placeholder{
    color: var(--blue);
}

table td{
    vertical-align: middle;
}

/* BUTTONS */

.btn-primary{
    background: transparent;
    font-size: 16px;
    font-weight: bold;
    border-radius: 0;
    border: 2px solid var(--red);
    padding: 10px 33px;
    transition: all 0.4s;
}

.btn-primary:hover,
.btn-primary:focus{
  box-shadow: inset 190px 0 0 0 var(--red);
  background: transparent;
  border: 2px solid var(--red) !important;
}

/* MOBIL MENU -  SIDEBAR  */

.mobilmenu{
    height: 60px;
    position: fixed;
    z-index: 998;
    background: #fff;
    width: 100vw;
    -webkit-box-shadow: 0px 0px 13px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 13px -5px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 13px -5px rgba(0,0,0,0.75);
    outline: 0 none !important;
}

.mobilmenu .mobillogo{
    max-height: 40px;
    margin-top: 10px;
}

.mobilmenu .hamburger{
    border-bottom: 4px solid var(--blue);
    width: 25px;
    margin-bottom: 5px;
    border-radius: 2px;
}

.mobilmenu .hb2{
    animation-delay: 0.3s;
}

.mobilmenu .hb3{
    animation-delay: 0.7s;
}
.mobilmenu #sidebarCollapse{
    margin-top: 8px;
    border: none;
    background: transparent;
    padding-top: 8px;
}

.mobilmenu .cartbtn{
    padding-top: 3px !important;
    margin-top: 10px;
    border: none;
    background: transparent;
    color: var(--blue);
}

.mobilmenu .basketsum{
    margin-top: 0;
    height: 23px;
    width: 23px;
    font-size: 11px;
    padding-top: 4px;
    left: auto;
    margin-left: 15px;
    top: 2px;
    background: var(--red);
    position: absolute;
    border-radius: 12px;
    color: #fff;
}

#mCSB_1,
.mCSB_container:focus{
    outline: 0 !important;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 999;
    background: var(--blue);
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    outline: 0 none !important;
}

#sidebar .sidebarlogo{
    margin-left: 0px;
    max-height: 40px;
}

#sidebar .btn-light{
    background: var(--red);
    border: none;
    border-radius: 0;
    color: #fff !important;
}

#sidebar.active {
    left: 0;
}

#sidebar #dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: var(--blue);
    position: absolute;
    top: 19px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--red)
}

#sidebar #dismiss:hover,
#sidebar #dismiss:focus{
    background: #fff;
    color: #FFDE05;
    outline: 0 none !important;
}

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    top: 0;
}

.overlay.active {
    display: block;
    opacity: 1;
}

#sidebar .sidebar-header {
    padding: 12px 20px;
    background: #ccc;
}

#sidebar ul.components {
    padding: 15px 0 15px 10px;
    border-bottom: 1px solid #fff;
}

#sidebar ul p {
    color: #fff;
    padding: 0 10px;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 19px;
}

#sidebar ul li a {
    padding: 10px 10px 10px 0;
    font-size: 1.1em;
    display: block;
    color: #fff;
}

#sidebar ul li a svg{
    height: 30px;
    width: 50px;
}

#sidebar ul li a svg .cls-1,
#sidebar ul li a svg .cls-2{
    fill: #fff !important;
    opacity: 1;
}

#sidebar ul li a:hover {
    color: #34a55f;
    background: #fff;
}

#sidebar ul li a.btn-light{
    color: #333;
}

#sidebar ul li.active>a,
#sidebar a[aria-expanded="true"] {
    color: #fff;
    background: #ccc;
}

#sidebar a[data-toggle="collapse"] {
    position: relative;
}

#sidebar ul.infomenus li a{
    font-size: 13px;
    line-height: 1.3;
    padding-left: 10px;
}

#sidebar .dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

#sidebar ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}

#sidebar ul.CTAs {
    padding: 20px;
}

#sidebar ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

#sidebar a.download {
    background: #fff;
    color: #7386D5;
}

#sidebar a.article,
#sidebar a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}

/* HEADER */

header #usermenu{
    background: #0C2F33;
    padding: 8px;
    z-index: 999;
    position: fixed;
    width: 100%;
}

header #usermenu ul{
    padding: 0;
    margin: 10px 0 0 0;
    text-align: right;
}

header #usermenu ul>li{
    display: inline-block;
}

header #usermenu ul>li a{
    padding: 3px 10px;
}

header #usermenu ul>li,
header #usermenu ul>li a{
    color: #fff;
}

header #usermenu ul>li a.dropdown-item{
    color: var(--blue);
}

header #usermenu ul>li a:hover,
header #usermenu ul>li a:focus{
    color: var(--red);
}




header #usermenu .btn-primary:hover, header #usermenu .btn-primary:focus {
    box-shadow: inset 300px 0 0 0 var(--red);
}

.mobilebuttonka{
	box-shadow: none !important;
	background: var(--red);
}

header .headerlogopic{
    width: 250px;
    position: absolute;
    left: 50%;
    margin: 50px 0 0 -125px;
    z-index: 101;
}

header .desktopmenu{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    height: 100px;
    padding-top: 155px;
    transition: background 0.25s;
}

header .desktopmenu ul{
    padding: 10px 0 0;
    position: absolute;
    right: 50%;
    margin-right: -483px;
}

header .desktopmenu ul>li{
    list-style: none;
    display: inline;
    margin: 0 5px;
}

header .desktopmenu ul>li a{
    color: #fff;
    font-weight: medium;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 8px 15px;
    transition: all 0.6s;
}

header .desktopmenu ul>li a:hover,
header .desktopmenu ul>li a:focus{
    color: var(--red) !important;
    background: transparent;
    box-shadow: inset 0 -3.25em 0 0 #fff;
}

header .desktopmenu .destopmenulogo{
    position: absolute;
    width: 150px;
    opacity: 0;
    transition: all 0.4s;
    margin-left: -25px;
}

header  .desktopmenu .cls-1{
    fill: #000 !important;
}

/* FOOTER */

footer{
    background: #000;
    padding: 40px 0;
}

footer ul{
    padding: 0;
    margin: 0;
}

footer ul li{
    display: inline-block;
    margin-right: 8px;
}

footer ul li a{
    color: #fff;
}

footer ul li a:hover,
footer ul li a:focus{
    color: var(--red);
}

footer .madeby{
    text-align: right;
}

/* MODALS */

.modal-title{
    font-size: 25px;
    font-weight: 900;
}

.modal-body p{
    margin-bottom: 4px;
    color: var(--blue);
    font-size: 14px;
}

.modal-body p span{
    color: var(--red);
}

.modal-body a:hover,
.modal-body a:focus{
    color: var(--red);
}

.modal-body .btn-primary{
    color: var(--red);
}

.modal-body .btn-primary:hover,
.modal-body .btn-primary:focus{
    box-shadow: inset 280px 0 0 0 var(--red);
    color: #fff;
}

.modal-body label{
    font-weight: bold;
    color: var(--blue);
}

.modal .programname{
    font-size: 16px;
    color: var(--red);
    margin-bottom: 8px;
    text-align: center;
}

/* HOMEPAGE */

#homepage-slider .swiper-slide{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#homepage-slider .swiper-slide .layer,
#subpageheader .layer{
    background: rgba(0,0,0,0.5);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
}

#homepage-slider .swiper-slide .content{
    color: #fff !important;
    position: relative;
    z-index: 2;
}

#homepage-slider .swiper-slide .content h2,
#homepage-slider .swiper-slide .content h3{
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 1) !important;
    padding-left: 0;
    border-left: none;
}

#homepage-slider .swiper-slide .content .separator,
#subpageheader .separator{
    border: 2px solid #fff;
    width: 65px;
    margin: 0 auto 30px auto;
}

#homepage-slider .swiper-slide .content .btn-primary{
    border: 2px solid #fff;
    margin-top: 75px;
}

#homepage-slider .swiper-slide .content .btn-primary:hover,
#homepage-slider .swiper-slide .content .btn-primary:focus{
  box-shadow: inset 150px 0 0 0 #fff;
  border: 2px solid #fff !important;
  color: var(--red);
}

.swiper-pagination-bullet{
    background: #fff;
    width: 10px;
    height: 10px;
}

/* ONLINE CHECKIN HEADER */

#onlineheader{
    background: var(--gray);
    padding: 100px 0;
}

#onlineheader img{
    width: 80px;
    margin-bottom: 30px;
}

#onlineheader p{
    padding-left: 50px;
}

#onlineheader p a{
    color: var(--blue);
}

#onlineheader p a:hover,
#onlineheader p a:focus{
    color: var(--red);
}

#onlineheader .loginbtn{
    color: var(--red);
    padding: 3px 8px;
    border: 2px solid red;
}

#onlineheader .loginbtn:hover,
#onlineheader .loginbtn:focus{
    box-shadow: inset 130px 0 0 0 var(--red);
    color: #fff;
}

#onlineheader p span{
    font-size: 35px;
    font-weight: 700;
    color: var(--red);
    position: absolute;
    margin: -15px 0 0 -50px;
}

#onlineheader .item{
    margin-top: 40px;
}


/* WEEK CALENDAR */

#calendar{
    padding: 100px 0;
}

#calendar .subcontent{
    margin-top: 50px;
}

#calendar .col-12.scroll-container{
    overflow-x: auto;
    overflow-y: visible;
    transform: rotateX(180deg);
    position: relative;
    padding: 0;
}

#calendar .row.scrollable {
    flex-wrap: nowrap;
    transform: rotateX(180deg);
}

#calendar .day.hours {
    position: sticky;
    left: 0;
    background-color: white;
    z-index: 2;
}

#calendar .item{
    border: 1px solid #ccc;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

#calendar * {
    user-select: none;
}

#calendar .day .head{
    background: var(--blue);
    text-align: center !important;
    height: 72px;
}

#calendar .item .daycontent p{
    line-height: 1;
    margin: 0;
    color: #fff;
}

#calendar .item .daycontent .dayname{
    margin-bottom: 6px;
}

#calendar .item .daycontent .date{
    font-weight: bold;
    font-size: 35px;
}

#calendar .item .card{
    width: 100%;
    height: 56px;
    transition: all 0.25s;
    position: relative;
    z-index: 1;
}

#calendar .item .card:hover,
#calendar .item .card:focus{
    background: var(--gray);
}

#calendar .item .card .card-body{
    padding: 2px;
    height: 56px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#calendar .item .card .card-body p{
    margin: 0;
    font-size: 14px;
    line-height: 14px;
    color: var(--blue);
}

#calendar .item .card .card-body p.time{
    font-weight: bold;
}

#calendar .hours .item{
    font-weight: bold;
    color: var(--blue);
}

#calendar .expired .item,
#calendar .expired .item .card-body,
#calendar .expired .item .card-body p{
    background: var(--gray);
    color: #ccc;
}

/* HOMEPAGE ABOUT */

#abouthp{
    padding: 100px 0;
}

#abouthp .content{
    background: rgba(0,0,0,.6);
    padding: 30px;
    color: #fff !important;
}

#abouthp .content h2{
    padding: 0;
    border: none;
    margin: 10px 0;
    text-transform: uppercase;
    font-weight: 500;
}


#abouthp .content .btn-primary{
    margin-top: 40px;
}

/* SERVICES */

#services h2{
    margin: 100px 0;
}

#services .item{
    height: 480px;
}

#services .item .inner{
    position: absolute;
    height: 480px;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.3);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-items: center;
    padding: 90px;
    transition: all 0.25s;
}

#services .item .inner .btn-primary{
    height: 0;
    opacity: 0;
    color: transparent;
    border-color: transparent;
    padding: 0 33px;
    margin-top: 30px;
}

#services .item .inner:hover{
    background: rgba(12,47,51,.7);
}

#services .item .inner:hover .btn-primary{
    height: 48px;
    opacity: 1;
    color: #fff;
    border-color: var(--red);
    padding: 10px 33px;
}

#services .item .inner h3{
    border-color: transparent;
    transition: all 0.25s;
}

#services .item .inner:hover h3{
    border-color: var(--red);
}

/* BLOG HOMEPAGE */

#blog{
    padding: 80px 200px 100px;
}

#blog .moreblogdiv{
    display: flex;
    align-items: center;
}

#blog .moreblogs{
    color: var(--blue);
    border-color: var(--blue);
    position: absolute;
    right: 0;
}

#blog .moreblogs:hover,
#blog .moreblogs:focus{
    color: #fff;
    box-shadow: inset 350px 0 0 0 var(--blue);
    color: #fff;
    border-color: var(--blue) !important;
}

#blog .button-next,
#blog .button-prev{
    position: absolute;
    top: 250px;
    cursor: pointer;
}

#blog .button-next{
    right: 0;
    margin-right: -50px;
}

#blog .button-prev{
    left: -50px;
}

#blog .blog-slider{
    margin-top: 80px;
}

#blog .blog-slider .swiper-slide{
    padding-bottom: 60px;
    z-index: 1
}

#blog .blog-slider .swiper-slide-next{
    z-index: 99;
}

#blog .blog-slider .picture{
    height: 300px;
    margin-top: 50px;
    transition: all 1s;
    width: 100%;
}

#blog .blog-slider .content{
    margin: -100px 0 0 -35px;
    width: calc(100% + 70px);
    background: #fff;
    -webkit-box-shadow: 0px 15px 40px -30px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 15px 40px -30px rgba(0,0,0,0.75);
    box-shadow: 0px 15px 40px -30px rgba(0,0,0,0.75);
    opacity: 0;
    transition: all 1s;
    padding: 30px;
}

#blog .blog-slider .swiper-slide-next .picture{
    width: calc(100% + 100px);
    margin: 0 0 0 -50px;
    height: 400px;
}

#blog .blog-slider .swiper-slide-next .content{
    opacity: 1;
}

#blog .blog-slider .content .btn-primary{
    color: var(--red);
}

#blog .blog-slider .content .btn-primary:hover,
#blog .blog-slider .content .btn-primary:focus{
    color: #fff;
}

#blog .blog-slider .content h3{
    border: none;
    padding-left: 0;
    margin: 10px 0;
}

#blog .blog-slider .content .date{
    color: var(--red);
    margin: 0;
}

#blog .blog-slider .content .btndiv{
    display: flex;
    align-items: center;
    justify-content: center;
}

#blog .blog-slider .content .desc p{
    font-size: 12px;
}

/* BLOGLIST */

.bloglist .featured .inner{
    height: 350px;
    margin-top: 30px;
    padding: 30px;
}

.bloglist .featured .layer{
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    height: 350px;
    width: calc(100% - 30px);
    margin: -30px 0 0 -30px;
    z-index: 0;
}

.bloglist .featured:hover .layer{
    background: rgba(12,47,51,.7);
    transition: all 0.25s;
}

.bloglist .featured h3,
.bloglist .featured p,
.bloglist .featured .btn-primary{
    color: #fff !important;
}

.bloglist .featured .content{
    position: relative;
    z-index: 2;
}

.bloglist .card{
    margin: 15px 0;
    border: none;
}


/* CONTACT HOMEPGE */

#contact{
    background: var(--gray);
    padding: 100px 0;
}

#contact h3{
    padding-left: 0;
    border-left: none;
}

#contact a{
    color: #000;
}

#contact a:hover{
    color: var(--red);
}

#contact ul.socials{
    padding:0;
}

#contact ul.socials li{
    display: inline;
    margin-right: 15px;
}

#contact iframe{
    width: 100%;
    height: 300px;
    margin-top: 50px;
}

#contact .formdiv{
    padding-left: 50px;
}

#contact .formdiv .btn-primary{
    color: var(--blue);
    border-color: var(--blue);
}

#contact .formdiv .btn-primary:hover,
#contact .formdiv .btn-primary:focus{
    box-shadow: inset 150px 0 0 0 var(--blue);
    color: #fff;
    border-color: var(--blue) !important;
}

/* SUBPAGE HEADER */

#subpageheader{
    height: 350px;
}

#subpageheader .layer{
    height: 350px;
    top: 0;
}

#subpageheader .content{
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#subpagecontent{
    padding: 100px 0;
}

#subpagecontent .description .btn-primary{
    color: var(--red);
}

#subpagecontent .description .btn-primary:hover,
#subpagecontent .description .btn-primary:focus{
    color: #fff;
    box-shadow: inset 200px 0 0 0 var(--red);
}

#subpagecontent p{
    margin-bottom: 25px;
}

.faq .card{
    border: none;
}

.faq .card-body{
    padding: 0;
}

/* HALF HOUR MOD */

#calendar .item .card.half{
	margin-top: 60px;
	background: #fff;
}


/* PROFILE EXTENSION */

.bodysizes p,
.targetDatas p{
    margin-bottom: 0 !important;
}

.bodysizes .current td{
    font-weight: bold;
}

.bodysizes table{
    border: 3px solid var(--blue)
}

.bodysizes table td{
    border: 1px solid var(--blue)
}

.bodysizes table thead{
    background:rgba(0, 0, 0, 0.075);
}

.targetText{
    display: flex;
    align-items: center;
}

.targetDatas p{
    color: var(--red);
}

.targetDatas table{
    border: 3px solid var(--red);
}

.targetDatas table td{
    border: 1px solid var(--red);
    color: var(--red)
}

.profileChart .buttonsdiv ul li{
    display: inline;
    padding: 0px;
    list-style: none;
    margin: 0 8px 0 0;
    background: none !important;
}

.profileChart .buttonsdiv ul li .colorline{
    margin-top: 5px;
}

.profileChart .buttonsdiv ul li a {
    width: 90px;
    border-radius: 0;
    border: 1px solid var(--blue);
    padding-top: 10px;
}

/* WORKOUTS */

.dailyWorkouts .btn-primary{
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #999;
}

.dailyWorkouts .btn-primary:hover,
.dailyWorkouts .btn-primary:focus{
    border: none !important;
    border-bottom: 1px solid #999 !important;
    box-shadow: none !important;
    background: none !important;
    color: var(--blue) !important;
}


/* NEW HOMEPAGE */

.npContent{
    padding: 80px 0;
}

.npContent .ml{
    display: flex;
    align-items: center;
}

.npContent h1{
    color: #FF0000;
    font-size: 60px;
    line-height: 72px;
}

.npContent.tudastar h1{
    color: #fff;
    text-transform: uppercase;
}

.npContent h2{
    font-size: 35px;
    line-height: 42px;
}

.npContent h2 span{
    color: #FF0000;
}

.npContent .btnRed{
    background: #FF0000;
    color: #fff;
    border: 2px solid #FF0000;
    margin-top: 80px;
}

.npContent .btnRed:hover{
    background: #fff;
    box-shadow: none !important;
    color: #FF0000;
    border: 2px solid #FF0000;
}

.npContent ul{
    list-style: none;
    padding-left: 0;
}

.npContent li:before{
    content: "\2022";
    color: #FF0000;
    margin-right: 15px;
}

.npContent .tudastarElony{
    padding-left: 30px;
    padding-right: 30px;
}

.npContent .tudastarElony img{
    height: 58px;
    margin-bottom: 20px;
}

.npContent .tudastarElony h4{
    font-size: 20px;
    font-weight: 600;
}

.npContent .tudastarElony2{
    padding-left: 100px;
    position: relative;
}

.npContent .tudastarElony2:before{
    content: url(https://trainergg.hu/themes/frontend/images/pipe.svg);
    position: absolute;
    left: 30px;
    top: 8px;
}

.npContent .tudastarCsomag .inner{
    border: 1px solid #fff;
    padding: 10px 10px 30px;
}

.npContent .tudastarCsomag .inner .line{
    width: 84px;
    margin: 0 auto 25px;
    border-bottom: 1px solid #fff;
}

.npContent .tudastarCsomag .inner p.price{
    font-size: 20px;
}

.npContent .tudastarCsomag .inner.offer{
    background: #fff;
}

.npContent .tudastarCsomag .inner.offer .line{
    border-color: #0C2F33;
}


.npContent .tudastarCsomag .inner.offer p{
    color: #0C2F33 !important;
}

#newHomepage6 .btnRed{
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 50px;
}

#newHomepageHeader{
    position: relative;
}

#newHomepageHeader .layer{
    position: absolute;
    background: rgba(0,0,0,0.3);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#newHomepageHeader img.logoImg{
    max-width: 300px;

}

#newHomepageHeader.tudastar ul{
    padding: 0;
    margin: 0;
    list-style: none !important;
}

#newHomepageHeader.tudastar ul li{
    list-style: none !important;
    display: inline;
}

#newHomepageHeader.tudastar ul li:before{
    display: none;
}

#newHomepageHeader.tudastar ul li .btn{
    margin: 0 !important;
}

#newHomepageHeader.tudastar ul li:nth-child(2) .btn{
    margin-left: 20% !important;
}

#newHomepage1,
#newStartpage3,
#timeReserv{
    background: #0C2F33;
}

#newHomepage1 p,
#newHomepage1 h2{
    color: #fff;
}

#newHomepage3,
#newHomepage5,
#newStartpage1,
#newStartpage5,
#bigForm,
#countdown{
    background: #F1F1F1;
}

#newHomepage2 h2,
#newHomepage3 h2,
#newHomepage4 h2,
#newHomepage5 h2{
    border-left: none;
    padding-left: 0;
}

#newHomepage5 .item{
    background: #fff;
    padding: 50px;
}

#newHomepage5 .item:before{
    content: '”';
    font-size: 100px;
    font-weight: bold;
    color: #FF0000;
    position: absolute;
    left: 0;
    bottom: -95px;
}

#newHomepage5 .item:after{
    content: '”';
    font-size: 100px;
    font-weight: bold;
    color: #FF0000;
    position: absolute;
    right: 0;
    top: -55px;
}

#newHomepage5 .item p{
    color: #0C2F33;
}

#newHomepage5 .item p.name{
    color: #FF0000;
    font-weight: bold;
    margin-bottom: 0;
}

#newStartpage3 h2{
    color: #fff;
}

#newStartpage3 h3{
    color: #FF0000;
    border: none;
    padding: 0;
    font-size: 35px;
    line-height: 42px;
}

#newStartpage3 p{
    color: #fff;
}

#newStartpage5{
    padding: 0;
}

#newStartpage6 h2{
    font-size: 50px;
    line-height: 52px;
}

#newStartpage6 h3{
    border: none;
    padding-left: 0;
}

#newStartpage6 h3 span{
    color: #FF0000;
}


#timeReserv h2,
#timeReserv p{
    color: #fff;
    border: none;
    padding: 0;
}

#timeReserv .calendar{
    margin-top: 50px;
}

#timeReserv .col-1,
.timecol{
    padding: 3px;
}

#timeReserv .daysName{
    color: #fff;
}

#timeReserv .days .col-1 .inner,
.timecol .inner{
    border: 1px solid #aaa;
    color: #aaa;
    font-weight: bold;
    padding: 5px 0;
}

#timeReserv .days .col-1 .inner.available,
#timeReserv .days .timecol .inner.available{
    border-color: #fff;
}

#timeReserv .days .col-1 .inner.choose{
    border-color: #FF0000;
}

#timeReserv .days .col-1 .inner a,
#timeReserv .days .timecol .inner a{
    color: #fff;
}

#timeReserv .days .col-1 .inner.choose a{
    color: #FF0000;
}

#timeReserv .btnBack{
    background: transparent !important;
    color: #fff;
}

#newHomepage8 p strong{
    color: #FF0000;
}

#bigForm h3{
    font-size: 24px;
    line-height: 26px;
    margin-top: 50px;
}

/* TUDÁSTÁR */

.videoListItem,
.receptItem{
    margin-bottom: 30px;
}

.videoListItem .image,
.receptItem .image{
    height: 232px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videoListItem .content,
.receptItem .content{
    background: #fff;
    padding: 15px;
    position: relative;
}

.receptItem .content{
    background: #F1F1F1;
}


.receptItem .content .title{
    color: #0c2f33;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.videoListItem a.heart,
.receptItem a.heart,
#videoPage a.heart{
    color: #FF0000;
    position: absolute;
    right: 15px;
    font-size: 20px;
}

.videoListItem a.category{
    color:#FF0000;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.videoListItem a.title{
    font-size: 20px;
    color: #0C2F33;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 !important;
}

.videoListItem p.date{
    font-size: 12px;
}

.videoListItem p.lead{
    font-size: 16px;
}

.receptItem p.time{
    color: #878181;
}

.receptItem p.time span{
    color: #0C2F33;
}

.receptItem .btn{
    border: 1px solid #0C2F33;
    color: #0C2F33;
}

.receptItem .btn:hover{
    box-shadow: none !important;
    color: #fff;
    background: #0C2F33;
    border: 1px solid #0C2F33 !important;
}

.tudastar .badge-danger{
    border: 1px solid #ff0000;
    color: #ff0000;
    background: transparent;
    font-weight: 400;
    font-size: 16px;
    margin-right: 10px;
    padding: 9px 14px 8px;
    border-radius: 20px;
    cursor: pointer;
}

.tudastar .badge-danger:hover{
    background: #ff000050
}

.tudastar .badge-danger.active{
    background: #ff0000;
    color: #fff;
}

.tudastar .badge-danger i{
    color: #FFF;
    margin-left: 5px;
}

#videoPage{
    padding: 100px 0 50px ;
}

#videoPage h1{
    font-size: 32px;
    line-height: 36px;
    color: #0C2F33;
    margin: 0;
}

#videoPage a.category{
    color: #FF0000;
    font-weight: 600;
}

#receptPage{
    padding: 100px 0;
}

#receptPage .description img{
    width: 100%;
    height: auto;
    margin: 8px 0 24px;
}

#receptPage .ingredients .inner{
    background: #F1F1F1;
    padding-top: 25px;
}

#receptPage .ingredients .inner h4{
    color: #ff0000;
    text-transform: uppercase;
    padding-left: 25px;
    padding-right: 25px;
    border-bottom: 1px solid #ff0000;
    padding-bottom: 15px;
    font-size: 20px;
}

#receptPage .ingredients .inner ul{
    list-style: none;
    padding: 25px;
    font-size: 20px;
    font-weight: 600;
}

#receptPage .ingredients .inner ul li{
    font-size: 16px;
    font-weight: 400;
}

#receptPage .ingredients .inner ul li span{
    font-weight: 600;
}

#receptPage .ingredients .inner ul li a{
    color: #ff0000
}

.playlist ul{
    padding: 0 0 0 0;
    margin: 30px 0 0;
    list-style: none;
    position: relative
}

.playlist ul li{
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    padding-left: 40px;
    margin-bottom: 10px;
    position: relative;
}

.playlist ul li.visited:before{
    font-family: fontawesome;
    content: '\f14a';
    color: #ff0000;
    position: absolute;
    left: 5px;
    font-size: 20px;
    top: 50%;
    margin-top: -20px;
    font-weight: bold;
}

.playlist ul li a{
    color: #0C2F33 ;
    font-weight: bold;
}

.playlist ul li.visited a{
    color: #0C2F3360;
    font-weight: normal;
}

#countdown .counter {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

#countdown .counter .item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#countdown .counter .item span:first-of-type {
    font-weight: 700;
    font-size: 5rem;
    color: #FF0000;
    display: block;
    width: 6rem;
    text-align: center;
}

#countdown .counter .item .text {
    font-size: 1.5rem;
    font-weight: 500;
    color: #0C2F33;
}

#countdown .btnRed {
    width: fit-content;
}

@media (max-width: 767px){
    h1, h2{
        font-size: 35px;
        line-height: 35px;
    }
    
    h3{
        font-size: 20px;
        line-height: 20px;
    }

    header .desktopmenu,
    header .headerlogopic,
    header #usermenu{
        display: none;
    }

    footer ul{
        margin-bottom: 30px;
    }

    footer ul>li{
        display: block;
        text-align: center;
        line-height: 2;
    }


    #abouthp{
        background-position: 37% center !important;
        padding-bottom: 0;
    }

    #abouthp .content{
        margin-top: 500px;
    }

    #blog{
        padding: 100px 30px 80px;
    }

    #blog .blog-slider{
        padding: 0;
    }

    #blog .button-next,
    #blog .button-prev{
        display: none;
    }

    #blog .blog-slider .swiper-slide{
        width: auto;
    }

    #blog .blog-slider .swiper-slide .content,
    #blog .blog-slider .swiper-slide-next .content{
        opacity: 1;
    }

    #blog .blog-slider .swiper-slide .picture,
    #blog .blog-slider .swiper-slide-next .picture{
        width: 100%;
        height: 250px;
        margin: 0;
    }

    #blog .blog-slider .content{
        padding-bottom: 30px;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-top: -20px;
    }

    #contact .formdiv{
        padding-left: 15px;
    }

    #calendar .item .daycontent .date {
        font-size: 18px;
    }

    #calendar .item {
        height: 50px;
    }

    #calendar .item .daycontent .dayname{
        font-size: 12px;
    }

    /* NEW HOMEPAGE */

    .npContent h1{
        font-size: 35px;
        line-height: 40px;
    }
    
    .npContent h2{
        font-size: 27px;
        line-height: 30px;
    }

    #newStartpage5{
        padding-bottom: 80px;
    }

    #countdown .counter {
        gap: 2rem;
    }
    
    #countdown .counter .item span:first-of-type {
        font-size: 2.5rem;
        width: 2.75rem;
    }
    
    #countdown .counter .item .text {
        font-size: 1rem;
    }
    
    .feedbackImg{
        margin-bottom: 15px;
    }

}

@media (min-width: 768px) and (max-width: 992px){
    .navbar{
        display: none;
    }

    #contact .formdiv{
        padding-left: 15px;
    }
	
}

@media (min-width: 993px) and (max-width: 1200px){

}

@media (min-width: 1201px) and (max-width: 1366px){
    h1, h2{
        font-size: 45px;
    }
    
    h3{
        font-size: 30px;   
    }

    #services .item,
    #services .item .inner{
        height: 350px;
    }
    
    #services .item .inner{
        padding: 25px;
    }

	
}

@media (min-width: 1367px){

}


.embed-responsive-9by16 {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    padding-top: 177.78%; /* 9:16 arány => 16/9*100 = 177.78% */
}
.embed-responsive-9by16 iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0;
}