.selectedIcon:before {
    font-family: FontAwesome;
    content: "\f046";
}

.emptyIcon:before {
    font-family: FontAwesome;
    content: "\f096";
}

.featureDetailIcon:before {
    font-family: FontAwesome;
    content: "\f046";
}

.featureDetailButton {
    padding: 2px;
}

.drillerGuidanceModal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    min-width: 100vw;
    min-height: 100vh;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    overflow: auto;
}

.drillerGuidanceModalContent {
    background-color: whitesmoke;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: fit-content;
    max-height: fit-content;
    padding: 3rem;
    border: 3px solid black;
    border-radius: 15px;
}

.drillerGuidanceIcon {
    width: 26px;
    height: 26px;
}

.dg-title {
    font-style: italic;
    font-size: 24px;
    font-weight: bold;
}

.dg-logo {
    height: 100px;
    width: 100px;
}

.dg-td, .dg-th {
    text-align: center;
}

.dg-td {
    border-top: 1px solid black;
}

.dg-table {
    border: 2px solid;
    border-radius: 5px;
    box-shadow: 2px 2px 2px gray;
}

.bold {
    font-weight: bold;
}

.dg-textbox {
    height: 20px;
    border: 1px solid black;
    border-radius: 1px;
}

.dg-button {
    height: 24px;
    border: 1px solid black;
    border-radius: 6px;
    border: none;
    color: #fff;
    background: linear-gradient(180deg, #4B91F7 0%, #367AF6 100%);
    background-origin: border-box;
    box-shadow: 0px 0.5px 1.5px rgba(54, 122, 246, 0.25), inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2);
    touch-action: manipulation;
}

.dg-button:focus {
    box-shadow: inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2), 0px 0.5px 1.5px rgba(54, 122, 246, 0.25), 0px 0px 0px 3.5px rgba(58, 108, 217, 0.5);
    outline: 0;
}

.row {
    display: flex;
    width: 100%;
    padding: 10px;
}

.row::after {
    /* display: block;*/
    clear: both;
    content: "";
}

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

.pb-3 {
    padding-bottom: 3px;
}

/* Print */
@media print {
    .gis-dijit-Growl {
        display: none;
    }
    
    .row {
        width: 90%;
    }

    .drillerGuidanceModalContent {
        margin: 0;
        padding: 0;
        max-width: 100%;
        width: 100%;
        max-height: 100%;
        height: fit-content;
        border: none;
    }

    .dg-button {
        display: none;
    }
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
