.success {
    background-color: #2be338;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 2px 10px rgba(25, 25, 25, 0.633);
    position: fixed;
    right: 20px;
    z-index: 1000;
    top: 20px;
    color: black;
    font-family: Arial, sans-serif;
    cursor: pointer;
}



#empty {
    width: 100%;
    height: 200px;
    position: relative;
    border-radius: 5px;
}

#EmptyText{position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%); color: white;font-family: Arial, sans-serif;}

#CartItemStore{display: flex;flex-wrap: wrap;width: 95%;gap: 5%;row-gap: 30px;margin: 0 auto;}

.CartItem {
    width: 47.5%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 10px 10px;
    position: relative;
}

.CartItem img {width: 100%;height: 100%;object-fit: cover}

.Info {
    position: absolute;
    bottom: 0px;
    display: flex;
    background-color: rgba(210, 210, 210, 0.8);
    overflow: hidden;
    left: 0px;
    width: 100%;
    align-items: center;
    padding: 8px;
}

.Info h3 {
    margin-left: 20px;
    margin-right: 20px;
    padding: 0px;
    flex-grow: 1;
}

.Info button {
    padding: 12px;
    background-color: rgb(255,255,255);
    color:black;
}

.Info button:hover {
    background-color: rgb(120,100,255);
    color: white;
}

#Confirm {
    display: none;
}

@media screen and (max-width: 1000px){
    .CartItem{width: 100%;height: 400px;}
    .CartItem img{object-position: bottom}
    .Info {
        flex-direction: column;
    }
    .Info button {width: 100%;}
    .Info h3 {
        padding: 10px;
    }
    
}


#ContactForm {
    padding: 20px;
    width: 100%;
    height: 100vh;
    left: 0%;
    top: 0%;
    position: fixed;
    background-color: rgba(0,0,0,0.8);
    z-index: 2;
    overflow-y: auto;
    display: none;
    backdrop-filter: blur(20px);
}

#ContactForm::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 8px;
    border: 4px solid transparent;
    background-clip: padding-box;
}

#ContactForm::-webkit-scrollbar {
    width: 16px;
}

.FormTitels {
    margin-bottom: 20px;
    color: white;
    font-family:"Amethysta", Sans-serif; 
    font-size: 20px;
}

input , .NameInp , #EmailInp, #AgeInp, #BudgetInp, #AdultsNumInp, #KidsNumInp, #InfantNumInp {
    padding: 4px 10px;
    border-radius: 5px;
    outline: none;
    border: 2px solid whitesmoke;
    display: inline !important;
    margin-bottom: 20px;
    color: black;
    font-size: 20px;
    background-color: white;
}

input:focus {
    border: 2px solid whitesmoke;
}

#FlexContInp, #BudgetFlexInp, #FlexPersonInp {
    display: flex;
    gap: 2%;
    flex-wrap:  wrap;
}

#DateFlexInp {
    display: flex;
    gap: 2%;
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: 10px;
    align-items: flex-start;
    flex-wrap: wrap;
}

#DateFlexInp div {display: flex; flex-direction: column; gap: 10px;}

.NameInp {width: 47%;}
#EmailInp, #AgeInp, #PhoneInp, #BudgetInp {max-width: 400px;width: 400px}

#BudgetCurrency {align-self: flex-start; color: black;}

#Country {
    width: fit-content;
    border-radius: 2px;
    font-size: 20px;
    padding: 7px 5px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: bold;
    color: black;
}

#PhoneFlexInp {
    margin-bottom: 20px;
}

#PhoneInp {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 20px;
}


#KnowUs {
    width: fit-content;
    font-size: 20px;
    border-radius: 2px;
    padding: 7px 20px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: bold;
    color: black;
}

#SubmitButton {
    background-color: #EBA55D;
    color: black;
    font-weight: 500;
    font-size: 20px;
    width: fit-content;
    transition: 200ms;
    box-shadow: 0px 3px 5px;
}

#SubmitButton:hover {
    transform: translateY(-2px);
    background-color: #e27815ff;
}

#SubmitButton:active {box-shadow: 0px 0px 0px;}

#Close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 45px;
    height: 45px;
    font-size: 30px;
    padding: 5px;
    border-radius: 2px;
    background-color: #ffffffff;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Close:hover {
    background-color: rgba(138, 138, 139, 1);
    color: white
}

@media screen and (max-width: 1000px){
    #FlexContInp,#FlexPersonInp{flex-direction: column;}
    .NameInp{width: 100%;}
    #AdultsNumInp,#KidsNumInp,#InfantNumInp {width: fit-content;}
    #Country{width: 100%;}
}