body {
	background-image: url("images/bg02.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-origin: content-box;
	background-attachment: fixed;
	background-color: #20bc74;
    font-family: 'Roboto', sans-serif;
}

body .container{
	background-color: #FEFEFE;
}

hr {
	border-top: 10px solid #a9d470;
}

table {
    font-size: 1.2rem;
}

.h1, h1 {
    font-size: 3.5rem;
    font-weight: bold;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 2.5rem;
}

#rprc-container-main {
    text-align: justify;
}

.rprc-center {
	text-align: center;
}

#rpc-opentime-alert {
    background: #0d6efd;
    color: white;
    padding: 1rem;
    font-size: 1.5rem;
}


#myCarousel .bg {
	display: block;
	top: 0px;
	left: 0px;
	height: auto;
	width: 100%;
}


.rpc-gallery-img {
    cursor: pointer;
    transition: transform 0.2s;
}
.rpc-gallery-img:hover {
    transform: scale(1.05);
}
.rpc-modal-dialog {
    max-width: 90%;
}
.rpc-modal-body {
    text-align: center;
}
.rpc-modal-body img {
    max-height: 80vh;
    object-fit: contain;
}


.rpc-callout-alert {
    padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    background-color: rgba(76, 255, 94, 0.25);
    border-left: 0.25rem solid rgb(7, 228, 81);
}

.rpc-callout-price {
    padding: 0.5rem;
    margin-top: 1.0rem;
    margin-bottom: 1.0rem;
    background-color: rgb(205, 222, 255);
    border: 0.25rem solid rgb(43, 156, 255);
    border-radius: 0.5rem;
    font-weight: bold;
}

.rpc-callout-expired {
    padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    color: rgb(255, 255, 255);
    background-color: rgb(53, 53, 73);
    border-left: 0.25rem solid rgb(61, 129, 255);
}

input:invalid {
    background-color: rgba(255, 0, 0, 0.1);
  }
  
input:valid {
    background-color: rgba(0, 255, 0, 0.1);
}

.rpc-input {
    height: 3rem;
    font-size: 18pt;
}

/**********************/
/* Billing page style */
/**********************/

.contact {
    padding: 4%;
}

.contact-box {
    background: #ff9b00;
    padding: 4%;
    border-radius: 0.5rem;
}

.contact-tracking-box {
    background: #FFFFFF;
    padding: 4px;
    border-radius: 0.5rem;
    text-align:center;
    font-size: 24px;
}

.contact-info {
    margin-top:10%;
}

.contact-info img {
    margin-bottom: 15%;
}

.contact-info h2 {
    margin-bottom: 10%;
}

.col-md-9 {
    background: #fff;
    padding: 3%;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.contact-form label {
    font-weight:600;
}

.contact-form button {
    color: #fff;
    font-weight:600;
    width: 25%;
}

.contact-form button:hover {
    background: #44BB44;
    color: #fff;
    font-weight:600;
}


/**********************/
/* Booking page style */
/**********************/

.rpc-booking-status-container {
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #31c5ff;
    color: white;
}

.rpc-booking-status-container h3 {
    color: black;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

#rpc-booking-status {
    font-size: 20pt;
}

#rpc-booking-cancel-container {
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #e3e3e3;
    color: black;
}

/*****************/
/* Common styles */
/*****************/


.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 600px;
    height: 600px;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
  }

  @media (min-width: 576px) and (max-width: 767.98px) { 
    .swiper-slide {
        width: 300px;
        height: 300px;
      }
  }

  @media (max-width: 575.98px) {
    .swiper-slide {
        width: 300px;
        height: 300px;
      }
  }




/* A div stílusai */
.color-alternate {
    text-transform: uppercase;
    font-weight: 600;
    width: 200px;
    height: 200px;
    animation: alternateColors 2s infinite;
}

/* Keyframes az animációhoz */
@keyframes alternateColors {
    0% {
        color: red;
    }
    50% {
        color: black;
    }
    100% {
        color: red;
    }
}