/*
Theme Name: WebPOS Child Theme
Theme URI: https://webpos.msdev.gr
Description: Child theme for WebPOS
Author: mindseed
Author URI: https://mindseed.gr
Template: webpos
Version: 1.0
*/

/*form*/

.main-form {
    padding: 40px;
    border-radius: 20px;
    color: #000;
    background: #f2f2f5;
    margin-top: 30px;
    margin-bottom: 50px;
}

.main-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
}

.main-form h2 {
    margin-top: 10px;
    font-size: 28px;
    display: block;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    background: #2e39a5;
}

.main-form h3 {
    margin-top: 10px;
    font-size: 25px;
    display: block;
    margin-bottom: 30px;
    padding: 5px;
    border-bottom: 2px solid;
}

.main-form .divider {
    border-bottom: 2px solid;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* .main-form p:nth-last-child(-n + 2){
	grid-column: span 2;
} */

.main-form label {
    font-size: 16px;
}

.main-form input:not([type="checkbox"]),
.main-form textarea,
.main-form select {
    border-radius: 5px;
    margin-top: 3px;
    padding: 6px 15px;
    width: 100%;
    min-height: 40px;
}

.main-form textarea {
    resize: none;
}

.main-form .form-bottom {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 20px;
    row-gap: 15px;
    /* display: grid; */
    /* grid-template-columns: repeat(2,1fr); */
}

.light-btn {
    display: inline-block;
    background: #fff;
    color: #2e39a5;
    border: 1px solid;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 15px;
}

.main-form .highlighted {
    background: #2e39a5;
    color: #fff;
    padding: 0 5px 5px 5px;
}

.main-form .submit {
    text-align: right;
}

.main-form .wpcf7-form-control.wpcf7-submit {
    width: auto;
    border: none;
    min-width: 130px;
    background: #2e39a5;
    font-size: 18px;
    padding: 6px 20px;
    margin-top: 50px;
}

.main-form span.wpcf7-list-item {
	margin: 0;
}


/*footer*/
.mstm-footer-bank-icons {
    margin-bottom: 20px;
    display: inline-flex;
    gap: 5px;
    padding: 5px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    align-items: center;
    flex-wrap: wrap;
}

.mstm-footer-bank-icons img {
    height: 25px;
}

.footer-bottom-flex #copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 40px;
    row-gap: 10px;
    flex-wrap: wrap;
}

/*home*/
.home-img img {
    min-height: 500px;
    object-fit: cover;
}

/*form page*/
.top-logo .vcex-image-inner {
	width: 80%;
	max-width: 350px;
}


@media (max-width:850px) {
    .footer-bottom-flex #copyright {
        justify-content: center;
    }
}

@media (max-width:710px) {
    .main-form .form-grid {
        grid-template-columns: auto;
    }

    .main-form .highlighted {
        margin-top: 15px;
    }
}

@media (max-width:600px) {
    .main-form {
        padding: 40px 20px;
    }
}