		li {
			margin-bottom: 0px !important;
		}
        .myClass::-webkit-input-placeholder {
            color: red;
        }

        .btn-info {
            background-color: #1e7bcb !important;
            border-color: #1d74c0 !important;
        }


        #imageContainer img {
            width: 100%;
            max-width: 512px;
        }

        .help-tip {
            position: absolute;
            top: 0;
            right: 0;
            text-align: center;
            background-color: #BCDBEA;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            font-size: 14px;
            line-height: 26px;
            cursor: default;
            /*left: 20%;*/
        }

        .help-tip:before {
            content: '?';
            font-weight: bold;
            color: #fff;
        }

        .help-tip:hover p {
            display: block;
            transform-origin: 100% 0%;
            -webkit-animation: fadeIn 0.3s ease-in-out;
            animation: fadeIn 0.3s ease-in-out;
        }

        .help-tip p {
            display: none;
            text-align: left;
            background-color: #1E2021;
            padding: 20px;
            width: 300px;
            position: absolute;
            border-radius: 3px;
            box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
            /*right: -4px;*/
            color: #FFF;
            font-size: 13px;
            line-height: 1.4;
            z-index: 9999;
            top: 31px;
        }

        .help-tip p:before {
            position: absolute;
            content: '';
            width: 0;
            height: 0;
            border: 6px solid transparent;
            border-bottom-color: #1E2021;
            left: 10px;
            top: -12px;
        }

        .help-tip p:after {
            width: 100%;
            height: 40px;
            content: '';
            position: absolute;
            top: -40px;
            left: 0;
        }

        @-webkit-keyframes fadeIn {
            0% {
                opacity: 0;
                transform: scale(0.6);
            }

            100% {
                opacity: 100%;
                transform: scale(1);
            }
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 100%;
            }
        }

        .img1 {
            padding-left: 20px;
            width: 50px;
            height: 50px;
            margin-left: 6px;
        }

        .chBig {
            height: 30px;
        }

        #overlay {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9990;
            display: none;
        }

        .progress {
            display: none;
            height: 21px;
            margin-top: 20px;
            margin-bottom: 0px;
        }

        dl li, ol li, ul li {
            line-height: normal;
        }

        /* New Marker Vendor CSS */
        #hideCanvas {
            display: none;
        }
        /* #wrapper{
            margin-top: 3em;

        } */
        #imageCanvas {
            margin-top: 1em;
            width: 18em;
            height: 18em;
        }

        .confidenceEl{
            width: 40px;
            height: auto;
        }
        .grid-template-columns {
            grid-template-columns: 200px 60px 60px 60px 60px 60px;
        }

        /* SPINNER */
        .spinner-container {
            position: relative;
            top: -9em;
            display: none;
            margin-top: -4em;
            z-index: 100;
        }

        .spinner {
            width: 4em;
            height: 4em;
            clear: both;
            margin: auto;
            border: 4px #1A1A2C solid;
            border-top: 4px #eee solid;
            border-radius: 50%;
            -webkit-animation: spin .6s infinite linear;
            animation: spin .6s infinite linear;
        }

        @-webkit-keyframes spin {
            from { -webkit-transform: rotate(0deg); }
            to { -webkit-transform: rotate(359deg); }
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(359deg); }
        }

        .checkmark-cover{
            display: none;
            position: relative;
            top: -9em;
            left: -7em;
            margin-top: -4em;
            z-index: 100;
        }

        .tasks-list-mark {
            float:right;
            position: relative;
            display: inline-block;
            vertical-align: top;
            margin: 5px;
            width: 4em;
            height: 4em;
            background-color: rgb(103, 173, 94);
            border: 3px solid rgb(20, 99, 10);
            border-radius: 50%;
            cursor:pointer;
        }

        .tasks-list-mark:before {
            content: '';
            display: block;
            position: absolute;
            top: 40%;
            left: 40%;
            margin: -9px 0 0 -10px;
            height: 1em;
            width: 2em;
            border: solid rgb(20, 99, 10);
            border-width: 0 0 4px 4px;
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }
        /* End New Marker Vendor CSS */
        
        /* Switch CSS */
        .switch {
        position: relative;
        display: inline-block;
        width: 60px;
        height: 34px;
        }

        .switch input { 
        opacity: 0;
        width: 0;
        height: 0;
        }

        .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        -webkit-transition: .4s;
        transition: .4s;
        }

        .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
        }

        input:checked + .slider {
        background-color: #2196F3;
        }

        input:focus + .slider {
        box-shadow: 0 0 1px #2196F3;
        }

        input:checked + .slider:before {
        -webkit-transform: translateX(26px);
        -ms-transform: translateX(26px);
        transform: translateX(26px);
        }
        /* Rounded sliders */
        .slider.round {
        border-radius: 34px;
        }

        .slider.round:before {
        border-radius: 50%;
        }
        /* End Switch CSS */
        #download_btn {
            background-color: white;
            color: #2680eb;
            border: 2px solid #2680eb;
            width: 250px;
            height: 40px;
            border-radius: 10px;
        }
        
        #download_btn:hover {
            background-color: #2680eb !important;
            color: white !important;
        }

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  .wp-core-ui select {
    max-width:100% !important;
}
  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    /* margin-left: 41%; */
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
  }
  
  /* The Close Button */
  .close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
          
          