﻿/*
    The verification feature includes the textboxes and buttons that make up the address correction feature.
    CSS Naming conventions: Read: https://en.bem.info/methodology/naming-convention/ , http://getbem.com/naming/
*/

/*
    Resolution independent styles
*/
.verificationcompact-addresstext { /*TextAreaAddressInput TextAreaAddressOutput*/
    /*width: 100%;*/
    /*min-width: 350px;*/
    /*max-width: 450px;*/
    /*height: 85px;*/
    resize: none;
    text-transform: uppercase;
}


.verificationcompact-responsetext { /*TextAreaResponseMsg*/
    width: 100%;
    resize: none;
    -webkit-transition: height 1s ease;
    -moz-transition: height 1s ease;
    -ms-transition: height 1s ease;
    -o-transition: height 1s ease;
    transition: height 1s ease;
    background-color:lightyellow
}


.verificationcompact-copybutton { /*ButtonAddressOutputCopy*/
    -webkit-appearance: none;
    background-color: #325d88;
    color: whitesmoke;
    /*width: 100%;*/
    /*height: 85px;*/
    /*resize:vertical;*/
    /*margin-top: -1px;*/
    /*text-decoration: none;*/
    /*white-space: nowrap;*/
    /*text-transform: none;*/
    /*padding: 1px 1px 1px 1px;*/
}

.verificationcompact-button-color { /*btncolor*/
    background-color: #325d88;
}

/*bootstrap column gutters*/
.verificationcompact-gutter > [class*='col-'] {
    padding-right: 1px;
    padding-left: 1px;
}

.verificationcompact-margins {
    margin: 0.3em 0.75em 0.5em 0.75em;
}

.verificationcompact-maptogglebtn {
    margin-left: 5px;
    /*margin-bottom: 2px;*/
    /*margin-top: 2px;*/
    /*width: 90px;*/
    height: 100%;
    color: #325d88;
    text-decoration: none;
    white-space: nowrap;
    text-transform: none;
    /*font-weight: bold;*/
    padding: 1px 1px 1px 1px;
}

.verificationcompact-getdirbtn {
    margin-left: 5px;
    margin-bottom: 2px;
    margin-top: 2px;
    width: 90px;
    height: 100%;
    color: #325d88;
    text-decoration: none;
    white-space: nowrap;
    text-transform: none;
    font-weight: bold;
}

    .verificationcompact-getdirbtn:hover, .verification-getdirbtn:focus {
        color: #ff0000;
        text-decoration: none;
    }

.verificationcompact-dropdowngetdir {
    padding: 1px 1px 1px 1px;
}




/*
    Resolution dependent media queries
*/

/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
    .verificationcompact-nopad {
        padding-bottom: 5px;
    }

    .col-12 {
        /*padding-right: 0px;*/
        /*padding-left: 0px;*/
    }

   .verificationcompact-responsetext {
        /*height: 90px;*/
    }

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

 
    .verificationcompact-responsetext { 
        /*height: 90px;*/
    }


}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

    .verificationcompact-responsetext {
        /*height: 90px;*/
    }

    .col-12 {
        padding-right: 15px;
        padding-left:  15px;
        
    }


}


/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

    .verificationcompact-responsetext {
        /*height: 85px;*/        
    }

}

/*.leaflet-control-zoom {
 color: red;
}

.leaflet-control-zoom-in {
 color: red;
 
}*/


