﻿/*---------UI---------*/
.inputTB {
    height: 40px;
    min-width: 150px;
    width: 250px;
    border: 3px solid rgb(231, 229, 229);
    border-radius: 5px 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.selectTB {
    height: 40px;
    min-width: 150px;
    width: 250px;
    border: 3px solid rgb(231, 229, 229);
    border-radius: 5px 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.submitButton {
    border-radius: 15px;
    width: 150px;
    height: 30px;
    text-align: center;
    /*background-color: #C18A4F;*/
    font-weight: 500;
    background-image: linear-gradient(white, #C18A4F);
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
}


/*-----------------------------alignment--------------------*/
/* Bottom left text */
.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
}

/* Bottom left text */
.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 40px;
}

/*p*/
.pFont {
    color: black;
}

/* Top left text */
.top-left {
    position: absolute;
    top: 8px;
    left: 16px;
}

/* Top right text */
.top-right {
    position: absolute;
    top: 8px;
    right: 16px;
}

/* Bottom right text */
.bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
}

/* Bottom center text */
.bottom-center {
    position: absolute;
    top: 95%;
    transform: translate(-50%, -50%);
}


/*top center text*/
.top-centered {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Centered text */
.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*-------------popup label------------------*/
/*required*/
/*.required:before {
    content: " *";
    color: red;
}*/
/* Popup container */
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
    visibility: hidden;
    width: 160px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 5%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}