* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Arial', sans-serif;
}

body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.Main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
}

.Content {
    position: relative;
    padding: 25px;
    top: 75px;
    left: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: calc(100% - 300px);
    height: 100%;
    min-height: calc(100vh - 75px);
}

.Content .MainTitle {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
}

.Content .MainTitle p {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: #211b18;
}

.Content .MainTitle p:after {
    content: '';
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 2px;
    border-radius: 50%;
    background: linear-gradient(to right, transparent, #211b18, transparent);
}

.Hatter {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #534554, #c4995b, #97a693);
}

.ActionButtons {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
}

.ActionButtons a {
    position: relative;
    margin-right: 15px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    height: auto;
    text-decoration: none;
}

.ActionButtons a .Button {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    height: 35px;
    border-radius: 35px;
    overflow: hidden;
    background: linear-gradient(to right, #231c18, #403329);
}

.ActionButtons a .Button span {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 75px;
    left: -45px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.25));
    transform: rotate(30deg);
    transition: all 0.5s ease-out;
}

.ActionButtons a:hover .Button span {
    left: calc(100% + 45px);
}

.ActionButtons a .Button i {
    position: relative;
    margin: 0 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    color: #000000;
}

.ActionButtons a .Button i.animate {
    transform: rotate(0deg);
    transition: all 0.5s;
}

.ActionButtons a:hover .Button i.animate {
    transform: rotate(180deg);
}

.ActionButtons a .Button p {
    margin: 0 25px 0 10px;
    color: #97a693;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

table td, th {
    text-align: left;
    padding: 10px 15px;
    color: #9f9f9f;
    transition: all 0.3s;
}

table tr th {
    background: #373138;
    color: #ffffff;
}

table tr:nth-child(even) {
    background-color: #3a343b;
    transition: all 0.3s;
}

table tr:nth-child(odd) {
    background-color: #3c373d;
    transition: all 0.3s;
}

table tr:hover td {
    color: #b4a365;
}

table tr:hover {
    background: #373138;
}

.Empty {
    position: relative;
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 5px 0;
    border-radius: 8px;
    background: #3c373d;
    box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.35);
}

.Empty p {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

table tr td .Actions {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

table tr td .Actions a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    margin: 0 5px;
    background: #231c18;
    transition: all 0.3s;
}

table tr td .Actions a i {
    color: #b4a365;
    transition: all 0.3s;
}

table tr td .Actions a:hover {
    background: #b4a365;
}

table tr td .Actions a:hover i {
    color: #231c18;
}

/*====================================================================================================================*/
/*==================================================LOGIN=============================================================*/
/*====================================================================================================================*/

.LoginContainer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.LoginContainer .LoginBox {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 60%;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.25);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
}

.LoginContainer .LoginBox form {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
}

.LoginContainer .LoginBox form .Title {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 75px;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    text-transform: uppercase;
    font-size: 28px;
}

.LoginContainer .LoginBox form .Title strong {
    font-size: 18px;
    margin-left: 15px;
    margin-top: 8px;
}

.LoginContainer .LoginBox form .InputSorok {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(100% - 125px);
}

.LoginContainer .LoginBox form .InputSorok input[type="text"],
.LoginContainer .LoginBox form .InputSorok input[type="password"] {
    position: relative;
    padding: 15px;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60%;
    height: 45px;
    background: #3b3324;
    border-radius: 8px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 18px;
}

.LoginContainer .LoginBox form .InputSorok input[type="text"]:-webkit-autofill,
.LoginContainer .LoginBox form .InputSorok input[type="text"]:-webkit-autofill:hover,
.LoginContainer .LoginBox form .InputSorok input[type="text"]:-webkit-autofill:focus,
.LoginContainer .LoginBox form .InputSorok input[type="text"]:-webkit-autofill:active,
.LoginContainer .LoginBox form .InputSorok input[type="password"]:-webkit-autofill,
.LoginContainer .LoginBox form .InputSorok input[type="password"]:-webkit-autofill:hover,
.LoginContainer .LoginBox form .InputSorok input[type="password"]:-webkit-autofill:focus,
.LoginContainer .LoginBox form .InputSorok input[type="password"]:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 1000px #3b3324 inset !important;
    -webkit-text-fill-color: white !important;
}

.LoginContainer .LoginBox form .InputSorok input[type="submit"] {
    position: relative;
    padding: 10px 35px;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    outline: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.LoginContainer .LoginBox form .InputSorok input[type="submit"]:hover {
    background: rgba(0, 0, 0, 0.75);
}

.LoginContainer .LoginBox form .InputSorok span {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.LoginContainer .LoginBox form .Copyright {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
}



/*====================================================================================================================*/
/*===============================================IRANYITOPULT=========================================================*/
/*====================================================================================================================*/

.Iranyitopult {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}

.Iranyitopult .StatisticsCard {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    height: auto;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.Iranyitopult .StatisticsCard .Title {
    position: relative;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
}

.Iranyitopult .StatisticsCard .Title p {
    color: #fff;
    font-size: 24px;
}

.Iranyitopult .StatisticsCard .Data {
    position: relative;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.Iranyitopult .StatisticsCard .Data p {
    color: #fff;
    font-size: 24px;
}

.Iranyitopult .StatisticsCard .Data #Date {
    text-align: center;
    color: #fff;
    font-size: 24px;
}

.Iranyitopult .StatisticsCard .Data ul {
    margin-top: 25px;
    list-style: none;
    text-align: center;
}

.Iranyitopult .StatisticsCard .Data ul li {
    display: inline;
    text-align: center;
    color: #fff;
    font-size: 24px;
}

.Iranyitopult .StatisticsCard .Data #Point {
    padding: 0 10px;
    animation: mymove 1s ease infinite;
}

/*====================================================================================================================*/
/*===============================================TÚRA LÉTREHOZÁSA=====================================================*/
/*====================================================================================================================*/

form {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.35);
}

form .Title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, 0.25);
}

form .Title p {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

form .Form {
    position: relative;
    padding: 25px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
}

form .Form label {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 35px;
    font-size: 18px;
    color: #fff;
}

form .Form textarea {
    width: 100%;
    height: 200px;
    padding: 15px;
    resize: none;
    font-size: 18px;
    outline: none;
    border: none;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    text-align: justify;
}

form .Form .TourDefaultInfos {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: auto;
}

form .Form .TourDefaultInfos .Info {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: calc(100% / 3.15);
    height: auto;
}

form .Form .TourDefaultInfos .Info label {
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 35px;
    font-size: 18px;
    color: #fff;
}

form .Form .TourDefaultInfos .Info input[type="text"] {
    padding: 0 15px;
    width: 100%;
    height: 35px;
    font-size: 18px;
    color: #fff;
    outline: none;
    border: none;
    background: rgba(0, 0, 0, 0.75);
}

form .Form input[type="text"] {
    padding: 0 15px;
    width: 100%;
    height: 35px;
    font-size: 18px;
    color: #fff;
    outline: none;
    border: none;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.75);
}

form .Form .FileUpload {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    border: 3px dashed #fff;
}

form .Form .FileUpload input[type="file"] {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    z-index: 1;
}

form .Form .FileUpload p {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 18px;
}

form .Form .DaysImages {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    overflow: hidden;
}

form .Form .DaysImages .Title {
    position: relative;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 35px;
    border-radius: 8px 8px 0 0;
    background: rgba(0, 0, 0, 0.25);
}

form .Form .DaysImages .Title p {
    text-align: center;
    color: #fff;
    font-size: 24px;
}

form .Form .DaysImages .TourDay {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 150px;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

form .Form .DaysImages .TourDay textarea {
    width: 50%;
    height: 100%;
    padding: 15px;
    resize: none;
    font-size: 18px;
    outline: none;
    border: none;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
}

form .Form .DaysImages .TourDay .FileUpload {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.5);
    border: 3px dashed #fff;
}

form .Form input[type="submit"] {
    margin: 25px 0;
    padding: 10px 50px;
    width: auto;
    height: auto;
    font-size: 18px;
    color: #fff;
    background: #519f2e;
    border: none;
    outline: none;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
    cursor: pointer;
    transition: all 0.3s;
}

form .Form input[type="submit"]:hover {
    background: #4CAF50;
}

form .Form .Maps {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}

form .Form .Maps .MapVideo {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% / 3.15);
    height: auto;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.25);
    overflow: hidden;
    box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.35);
}

form .Form .Maps .MapVideo p {
    position: relative;
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    color: #ffffff;
    text-align: center;
}

form .Form .Maps .MapActionButtons {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
}

form .Form .Maps .MapActionButtons a,
form .Form .Maps .MapActionButtons .Kivalaszt {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    text-decoration: none;
    color: #ffffff;
}

form .Form .Maps .MapActionButtons .Kivalaszt input {
    position: absolute;
    padding: 15px 25px;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
}

form .Form .Maps .MapActionButtons .Kivalaszt p {
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.15);
}

form .Form .Maps .MapActionButtons .Kivalaszt input:hover ~ p {
    background: rgba(0, 0, 0, 0.25);
}

form .Form .Maps .MapActionButtons .Kivalaszt input:checked ~ p{
    background: rgba(0, 0, 0, 0.5);
}

form .Form .PaymentMethods {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
}

form .Form .PaymentMethods .PaymentMethod {
    position: relative;
    margin: 5px 0;
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 47.5%;
    height: 35px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

form .Form .PaymentMethods .PaymentMethod:hover {
    background: rgba(0, 0, 0, 0.75);
}

form .Form .PaymentMethods .PaymentMethod.Active {
    background: #cccccc;
}

form .Form .PaymentMethods .PaymentMethod p {
    color: #fff;
    font-size: 18px;
    text-align: center;
    width: 100%;
    transition: all 0.3s;
}

form .Form .PaymentMethods .PaymentMethod.Active p {
    color: #000;
}

form .Form .ERROR {
    position: relative;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 35px;
    font-size: 18px;
    background: tomato;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
}

form .Form select {
    width: 100%;
    height: 35px;
    padding: 0 15px;
    border: none;
    outline: none;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

form .Form select option {
    background: #333;
    color: #fff;
}

form .Form .Form-Row-3 {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: auto;
}


form .Form .Form-Row-3 .Form-Column {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(100% / 3 - 25px);
    height: auto;
}

form .Form .Form-Row-4 {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: auto;
}


form .Form .Form-Row-4 .Form-Column {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(100% / 4 - 25px);
    height: auto;
}

form .Form .Inputs {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

form .Form .Inputs .SpecialTourBlock {
    position: relative;
    margin: 15px 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
}

form .Form .Inputs .SpecialTourBlock .SpecialTourOption,
form .Form .Inputs .SpecialTourBlock .SpecialTourText {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    width: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

form .Form .Inputs .SpecialTourBlock .SpecialTourOption {
    width: 175px;
}

form .Form .Inputs .SpecialTourBlock .SpecialTourText {
    margin-left: 50px;
    width: calc(100% - 175px);
}

form .Form .Inputs .SpecialTourBlock .SpecialTourText label {
    width: auto;
    white-space: nowrap;
}

form .Form .Inputs .SpecialTourBlock .SpecialTourText input {
    width: 100%;
    margin-left: 15px;
}

form .Form .Inputs .SpecialTourBlock .SpecialTourOption input {
    position: relative;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

form .Form .Inputs .SpecialTourBlock .SpecialTourOption .checkmark {
    position: relative;
    margin-left: 15px;
    height: 25px;
    width: 25px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.25);
}

form .Form .Inputs .SpecialTourBlock .SpecialTourOption:hover input ~ .checkmark {
    background-color: rgba(0, 0, 0, 0.5);
}

form .Form .Inputs .SpecialTourBlock .SpecialTourOption input:checked ~ .checkmark {
    background-color: rgba(0, 0, 0, 0.75);
}

form .Form .Inputs .SpecialTourBlock .SpecialTourOption .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

form .Form .Inputs .SpecialTourBlock .SpecialTourOption input:checked ~ .checkmark:after {
    display: block;
}

form .Form .Inputs .SpecialTourBlock .SpecialTourOption .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

form .Form .Inputs .SpecialTourBlock #specialtourtext {

}

form .Form .Date {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
}

form .Form .Date .DateBlock {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 47.5%;
    height: auto;
}

form .Form .Date .DateBlock label {
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 50px;
    font-size: 18px;
    color: #fff;
}

form .Form .Date .DateBlock input[type="date"] {
    margin: 5px 0;
    padding: 15px;
    width: 100%;
    height: 35px;
    outline: none;
    border: none;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 18px;
}

form .Form .Date .DateBlock input[type="date"].Automatic {
    background: rgba(0, 0, 0, 0.25);
}

form .Form .Date .DateBlock input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

form .Form .Date p {
    padding-top: 50px;
    color: #fff;
    font-size: 32px;
}

form .Warning {
    position: relative;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 50px;
    height: auto;
    background: rgba(0, 0, 0, 0.75);
}

form .Warning p {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

/*====================================================================================================================*/
/*=========================================LEJÁRT SZÁMLA ENGEDÉLYEZÉSE================================================*/
/*====================================================================================================================*/

.PaymentPermissionMain {
    position: relative;
    padding: 50px;
    top: 75px;
    left: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: calc(100% - 400px);
    height: 100%;
    min-height: calc(100vh - 75px);
}

.PaymentPermissionMain .Helyettesito {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 80%;
    height: auto;
    background: rgba(0, 0, 0, 0.25);
}

.PaymentPermissionMain .Helyettesito .Title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 75px;
    background: rgba(0, 0, 0, 0.25);
}

.PaymentPermissionMain .Helyettesito .Title p {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

.PaymentPermissionMain .Helyettesito .Form {
    position: relative;
    padding: 25px;
    padding-top: 75px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}

.PaymentPermissionMain .Helyettesito .Form .Card {
    position: relative;
    margin: 50px 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 450px;
    height: auto;
    border: 2px solid rgba(0, 0, 0, 0.75);
    background: rgba(0, 0, 0, 0.25);;
}

.PaymentPermissionMain .Helyettesito .Form .Card .Email {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, 0.75);
}

.PaymentPermissionMain .Helyettesito .Form .Card .Email input[type="text"]{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    text-align: center;
    font-size: 22px;
    color: #fff;
}

.PaymentPermissionMain .Helyettesito .Form .Card .Block {
    position: relative;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 90%;
    height: auto;
    border: 2px solid rgba(0, 0, 0, 0.5);
}

.PaymentPermissionMain .Helyettesito .Form .Card .Block label {
    position: relative;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    font-size: 18px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.PaymentPermissionMain .Helyettesito .Form .Card .Block p {
    position: relative;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.25);
}

.PaymentPermissionMain .Helyettesito .Form .Card input[type="submit"] {
    width: 75%;
    margin: 25px 0;
    height: 50px;
    border: none;
    outline: none;
    background: tomato;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all 0.3s;
}

.PaymentPermissionMain .Helyettesito .Form .Card input[type="submit"]:hover {
    background: #E84C3D;
}

.PaymentPermissionMain .Helyettesito .Warning {
    position: relative;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 50px;
    height: auto;
    background: rgba(0, 0, 0, 0.75);
}

.PaymentPermissionMain .Helyettesito .Warning p {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #fff;
}


.PaymentPermissionMain .Helyettesito .EmptyPermission {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
}

.PaymentPermissionMain .Helyettesito .EmptyPermission p {
    font-size: 24px;
    color: #fff;
    text-align: center;
}


/*====================================================================================================================*/
/*===================================================== SZÁMLÁK ======================================================*/
/*====================================================================================================================*/

.BillMain {
    position: relative;
    padding: 50px;
    top: 75px;
    left: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: calc(100% - 400px);
    height: 100%;
    min-height: calc(100vh - 75px);
}

.BillMain .Helyettesito {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    background: rgba(0, 0, 0, 0.25);
}

.BillMain .Helyettesito .Title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 75px;
    background: rgba(0, 0, 0, 0.25);
}

.BillMain .Helyettesito .Title p {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

.BillMain .Helyettesito .Form {
    position: relative;
    padding: 25px;
    padding-top: 75px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}

.BillMain .Helyettesito .Form .Card {
    position: relative;
    margin: 50px 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 450px;
    height: auto;
    border: 2px solid rgba(0, 0, 0, 0.75);
    background: rgba(0, 0, 0, 0.25);;
}

.BillMain .Helyettesito .Form .Card .TourName {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 50px;
    height: auto;
    background: rgba(0, 0, 0, 0.75);
}

.BillMain .Helyettesito .Form .Card .TourName p {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    text-align: center;
    font-size: 22px;
    color: #fff;
}

.BillMain .Helyettesito .Form .Card .Block {
    position: relative;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 90%;
    height: auto;
    border: 2px solid rgba(0, 0, 0, 0.5);
}

.BillMain .Helyettesito .Form .Card .Block label {
    position: relative;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    font-size: 18px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.BillMain .Helyettesito .Form .Card .Block p {
    position: relative;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.25);
}

.BillMain .Helyettesito .EmptyPermission {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
}

.BillMain .Helyettesito .EmptyPermission p {
    font-size: 24px;
    color: #ffffff;
    text-align: center;
}















