/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .pretty-input, .pretty-textarea {
    margin: 0px ;
    margin-top: 10px !important;
    font-size: 16px ;
    border-width: 1px ;
    border-color: #CCCCCC ;
    background-color: #FFFFFF ;
    color: #000000 ;
    border-style: solid ;
    border-radius: 4px ;
    width: 100% ;
}
.pretty-input:focus {
    outline:none ;
}

.pretty-textarea:focus {
    outline:none ;
}

.pretty-button {
    margin-top: 10px;
    position: relative ;
    vertical-align: top ;
    width: 100% ;
    height: 60px ;
    padding: 0 ;
    font-size: 22px ;
    color: white ;
    text-align: center ;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25) ;
    background: #AAAAAA ;
    border: 0 ;
    border-radius: 4px ;
    cursor: pointer ;
}

.pretty-button:hover {
    background: #FFFFFF ;
    color: #5b5b5b ;
}

.pretty-button:active {
    background: #CCCCCC;
    border: none;
}

.select2-search__field{
    font-size: 16px ;
    padding-bottom: 25px ;
}

@media (min-width: 768px) {
    .pretty-box {
        width: 50% !important;
        margin-left: 25% !important;
        margin-top: 20px !important;
    }
}

@media (max-width: 767px) {
    .pretty-box {
        width: 90% !important;
        margin-left: 5% !important;
        margin-top: 20px !important;
    }
}