
.icon-container {
    position: absolute;
    right: 10px;
    top: calc(50% - 15px);
}

.loader {
    position: relative;
    height: 20px;
    width: 20px;
    margin-bottom: -5px;
    display: inline-block;
    animation: around 5.4s infinite;
}

@keyframes around {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.loader::after,
.loader::before {
    content: "";
    background: white;
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    border-width: 2px;
    border-color: #333 #333 transparent transparent;
    border-style: solid;
    border-radius: 20px;
    box-sizing: border-box;
    top: 0;
    left: 0;
    animation: around 0.7s ease-in-out infinite;
}

.loader::after {
    animation: around 0.7s ease-in-out 0.1s infinite;
    background: transparent;
}

.text-label {
    display: inline-block;
    width: 100%;
    font-size: 13px;
    color: #777777b8;
    margin-bottom: 3%;
    margin-top: -3%;
    text-align: initial;
    margin-left: 3px;
    font-weight: bold;
}

/* input {
    border: 1px solid #ccc;
    width: 100%;
    padding: 3px 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
} */

.pac-container {
    background-color: #fff;
    z-index: 1000;
    border-radius: 2px;
    font-size: 13px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    /* width: 100%; */
    position: absolute; 
    width: 94%; 
    top: 0px; 
    left: 0;
}

.adminGoogleAddress {
    position: relative;
}

.adminGoogleAddress .pac-container {
    top: 33px;
    width: 100%;
}

.userGoogleAddContainer .pac-container {
    top: auto;
    left: auto;
}

.pac-icon {
    width: 15px;
    height: 20px;
    margin-right: 7px;
    margin-top: 6px;
    display: inline-block;
    vertical-align: top;
    background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons.png);
    background-size: 34px;
}

.pac-icon-marker {
    background-position: -1px -161px;
}

.pac-item {
    cursor: pointer;
    padding: 0 4px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    line-height: 30px;
    vertical-align: middle;
    text-align: left;
    border-top: 1px solid #e6e6e6;
    color: #999;
}

.pac-item-static.custom {
    background-color: #FFF9C4;
    cursor: not-allowed;
}

.pac-item:hover {
    background-color: #efefef;
}

.pac-item-error,
.pac-item-error:hover {
    color: #aaa;
    padding: 0 5px;
    cursor: default;
    background-color: #fff;
}

.manual-btn {
    font-size: 15px;
    color: #138efb;
}

.manual-btn:hover {
    color: #138efb;
}

.pac-item-selected {
    background-color: #6bb8e769 !important;
}

.pac-item-static {
    cursor: pointer;
    padding: 0 4px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    line-height: 30px;
    vertical-align: middle;
    text-align: left;
    border-top: 1px solid #e6e6e6;
    color: #999;
}

/* .custom-btn {
    color: #0000007a;
    margin-right: 3%;
    font-size: 14px;
    font-weight: bold;
}

.custom-btn:hover {
    color: #0000007a !important;
} */


@media all and (min-width:280px) and (max-width: 375px) {
    .pac-container {
        font-size: 11px;
    }
}

.googleAddressSearchInput {
    /* border: 1px solid #ccc; */
    width: 100%;
    /* padding: 3px 5px; */
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, .1); */
}