@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body {
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
}
.radio .highlight {
    background: #e9ecef !important;  /* Matches the green tone of the gradient */
    border-radius: 8px;
}

.radio .td:hover {
    background: #e9ecef !important;  /* Same as highlight for consistency */
    cursor: url(../../assets/images/LinkSelect.cur), auto;
    border-radius: 8px;
}
/* Overlay for success message */
#success {
    position: fixed;
    z-index: 9;
    background: rgba(0, 0, 0, 0.4) !important; /* Dark transparent background */
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex; /* Center the content */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

/* Success message styling */
#success .message {
    background: white; /* White background for the message box */
    padding: 20px; /* Padding around the message */
    border-radius: 10px; /* Rounded corners */
    text-align: center; /* Center text */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    position: relative; /* Position relative for close button */
}

/* Close button styling */
#success .close {
    position: absolute; /* Position absolute to the top right */
    top: 10px; /* Adjust the top position */
    right: 10px; /* Adjust the right position */
    cursor: pointer; /* Pointer cursor for close button */
    color: #007bff; /* Color for the close button */
    font-size: 18px; /* Size for better visibility */
    font-weight: bold; /* Bold text for the close button */
}

/* Image styling */
#success img {
    width: 150px; /* Desired width */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px; /* Space below the image */
}

/* Loading spinner */
.loading-spinner {
    display: none; /* Initially hidden */
    position: fixed; /* Position fixed for the spinner */
    z-index: 999; /* High z-index to show above other content */
    left: 50%; /* Center horizontally */
    top: 50%; /* Center vertically */
    transform: translate(-50%, -50%); /* Center with transform */
}


#error-msg {
    background-color: #f8d7da; /* Light red for error */
    color: #721c24; /* Darker red text */
    border: 1px solid #f5c6cb; /* Darker border */
}

.status-icon {
    width: 50px; /* Adjust the size of your icon */
    margin-bottom: 10px; /* Space between icon and text */
}

.close, .error-close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: bold;
    color: #888; /* Color for close button */
}

.close:hover, .error-close:hover {
    color: #000; /* Darker color on hover */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


.addMore {
    display: inline-block;
    background-color: #007bff; /* Bootstrap primary color */
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s; /* Subtle lift effect */
    cursor: url(../../forms/assets/images/LinkSelect.cur), auto;
}


.addMore:hover i {
    color: #e0e0e0; /* Change icon color on hover */
}

.removeCls {
    background-color: #dc3545; /* Bootstrap danger color */
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 10px;
    transition: transform 0.2s; /* Subtle lift effect */
    cursor: url(../../forms/assets/images/LinkSelect.cur), auto;
}

.removeCls:hover i {
    color: #ffe6e6; /* Change icon color on hover */
}



p.fieldheader {
  background-color: #343a40; /* Darker background */
  color: #ffffff; /* Light text */
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); /* Slight shadow for depth */
  border-left: 5px solid #007bff; /* Accent color for a modern touch */
}
.wskLabel {
  color: #5c5c5c;
  cursor: url(../../forms/assets/images/LinkSelect.cur), auto;
  font-size: 12pt;
  display: block;
  overflow: hidden;
  padding-top: 20px;
  position: relative;
  min-height:40px;
  line-height: 15px;
}

.wskCheckbox {
  border: 1px solid #c7c7c7;
  cursor: url(../../forms/assets/images/LinkSelect.cur), auto;
  display: inline-block;
  float: left;
  height: 14px;
  margin: 0 20px 20px 20px;
  outline-color: #eaeaea;
  padding: 0;
  position:relative;
  width: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index:1;
  background: #f4f4f4;
}
.wskLabel:hover {
	color: #8A9A5B !important;
}
body{
    background: #fffbf6;
}
.wskCheckbox.checked {
border-left: 3px solid #8A9A5B;
border-bottom: 5px solid #8A9A5B;
background: #fff;
  border-top: 1px solid rgba(0,0,0,0);
  border-right: 1px solid rgba(0,0,0,0);
  -webkit-transform: rotate(-45deg) scaleY(0.5);
  -moz-transform: rotate(-45deg) scaleY(0.5);
  -ms-transform: rotate(-45deg) scaleY(0.5);
  -o-transform: rotate(-45deg) scaleY(0.5);
  transform: rotate(-45deg) scaleY(0.5);
}

input[type='checkbox'].wskCheckbox {
   display: none;
}

.wskCircle {
display: none;
}

.wskCircle.show {
  opacity: 1;
}

.wskCircle.flipColor {
  background-color: #d2d3d2;
}

          /* Default button styling */
          #submissionbutton {
            width: 100%; /* Full-width button */
            position: relative; /* Position relative for absolute positioning of the span */
            padding: 20px; /* Adjust padding for increased height (double the original height) */
            font-size: 16px; /* Original font size */
            line-height: normal; /* Ensure line-height is normal */
            height: 60px; /* Set a fixed height if desired (e.g., 60px for double height) */
        }

        /* Default span styling */
        #submissionbutton span {
            display: inline-block;
            vertical-align: middle; /* Center the text */
            transition: opacity 0.3s ease; /* Smooth transition for text opacity */
        }

        /* On hover, hide the text and show the icon */
        #submissionbutton:hover span {
            opacity: 0; /* Fade out the text */
        }

        #submissionbutton:hover::after {
            content: '';
            background: url(https://i.cloudup.com/gBzAn-oW_S-2000x2000.png) no-repeat center;
            background-size: contain; /* Scale the image to fit */
            position: absolute; /* Position it absolutely within the button */
            left: 50%; /* Center it horizontally */
            top: 50%; /* Center it vertically */
            transform: translate(-50%, -50%); /* Adjust for the center */
            width: 60px; /* Set a width for the icon */
            height: 60px; /* Set a height for the icon */
        }

.radio td {
          /*   text-align: center; */
            padding: 10px;
            transition: box-shadow 0.3s, background-color 0.3s;
        }
        .radio input[type="radio"], .radio input[type="radio"] + label {
          margin-right: 20px;
          cursor: url(../../forms/assets/images/LinkSelect.cur), auto;
        }

        .form-check-input:checked + label {
            font-weight: bold;
            cursor: url(../../forms/assets/images/LinkSelect.cur), auto;
        }

        /* Emboss effect for selected radio button's <td> */
        .radio td.highlight {
            background-color:#fffbf6;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2),
                        -2px -2px 10px rgba(255, 255, 255, 0.5);
            border-radius: 8px;
        }

        /* For highlighting when hovered */
        .radio td:hover {
            background-color: #f0f0f0;
            cursor: url(../../forms/assets/images/LinkSelect.cur), auto;
        }

        body, input[type="text"],input[type="email"], input[type="tel"], textarea, select{
          cursor:url(../../forms/assets/images/cursor-v3-img.webp), auto;
        }