﻿/*
    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
*/
.verification-addresstext { /*TextAreaAddressInput TextAreaAddressOutput*/
    /*width: 100%;*/
    /*height: 85px; Using rows="4" instead in the tag*/
    resize: none;
    text-transform: uppercase;
}


.verification-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;
    padding-left: 0.1em;
}

.verification-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;*/
}

.verification-button-color { /*btncolor*/
    background-color: #325d88;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.btn-primary.focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40;
}

verification-button-color:hover{
    background-color: #337ab7;
    border-color: #2e6da4;
}

/*bootstrap column gutters*/
.verification-gutter > [class*='col-'] {
    padding-right: 1px;
    padding-left: 1px;
}

.verification-margins {
    margin: 0.3em 0.75em 0.5em 0.75em;
}

.verification-maptogglebtn {
    margin-left: 5px;
    margin-right: 5px;
    /*margin-bottom: 2px;*/
    /*margin-top: 2px;*/
    /*width: 90px;*/
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    text-transform: none;
    /*font-weight: bold;*/
    padding: 1px 1px 1px 1px;
    background-color: #286090!important;
    border-color: #204d74!important;
}

.verification-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;
}

    .verification-getdirbtn:hover, .verification-getdirbtn:focus {
        color: #ff0000;
        text-decoration: none;
    }

.verification-dropdowngetdir {
    padding: 1px 1px 1px 1px;
    height: 100%;
}



/*
    Resolution dependent media queries
*/

/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
/*@media only screen and (min-width : 320px) {*/
    .verification-nopad {
        padding-bottom: 5px;
    }

    .col-12 {
        /*padding-right: 0px;*/
        /*padding-left: 0px;*/
    }

   .verification-responsetext {
        /*height: 90px;*/
    }

/*}*/

/* Extra Small Devices, Phones */
@media (min-width: 576px) {



}

/* Small Devices, Tablets */
@media (min-width : 768px) {

    .verification-responsetext {
        /*height: 90px;*/
    }

    .col-12 {
        /*padding-right: 15px;*/
        /*padding-left:  15px;*/
    }

}


/* Medium Devices, Desktops */
@media (min-width : 992px) {
}

/* Large Devices, Wide Screens */
@media (min-width : 1200px) {

    .verification-responsetext {
        /*height: 85px;*/
    }


    .nav-link {
        display: block;
        padding: .5rem 0.75rem;
    }

}

/*.leaflet-control-zoom {
 color: red;
}

.leaflet-control-zoom-in {
 color: red;
 
}*/


.modalOnTop { z-index: 20090 !important; }