<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Form Styling */
form {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    font-weight: 600;
    margin-top: 10px;
    color: #333;
}

/* Text Fields */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    height: 120px;
    resize: none;
}

/* Checkbox Styling */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Ensures space between checkbox and label */
    margin-top: 10px;
    font-size: 14px;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0; /* Prevents checkbox from resizing */
}

.checkbox-container label {
    font-weight: normal;
    color: #555;
    margin: 0;
    cursor: pointer;
    flex: 1; /* Allows label text to adjust properly */
}

/* Submit Button */
input[type="submit"] {
    background: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 15px;
    width: 100%;
}

input[type="submit"]:disabled {
    background: #ccc;
    cursor: not-allowed;
}

input[type="submit"]:hover {
    background: #0056b3;
}




/* Blog Story Area */
.blog-story-area {
    padding-top: 25px !important;
    padding-bottom: 80px;
}

.blog-story .story-hbtitle h2.page-title {
    margin: 0px 0 !important;
}

span.mtsnb-text {
    color: #fff !important;
}

/* Layout Adjustments */
.hentry {
    margin: 50px 0 0 !important;
}

.mtsnb-container-outer {
    width: 100%;
    position: fixed;
    background: #218ff8;
    text-align: center;
    padding: 11px;
    z-index: 1052;
}

.header-area {
    z-index: 2;
    position: relative;
    top: 41px !important;
}

.header-sticky.sticky {
    top: 42px !important;
}

/* Notification Bar */
.mtsnb-show,
.mtsnb-hide {
    display: none;
}

.mtsnb .mtsnb-text,
.mtsnb .mtsnb-button,
.mtsnb .mtsnb-text,
.mtsnb input {
    margin: 0.2em 1.5em;
}

a.mtsnb-link {
    background: #fff;
    border-radius: 4px;
    color: #1e73be !important;
    padding: 4px 12px;
    font-size: 14px;
    margin: 0 34px;
}

/* Features Box */
.features_box .content-icon {
    position: relative;
    top: -72px;
    left: 31%;
    width: 95px;
    height: 94px;
    overflow: hidden;
    border-radius: 0 0 0;
}

.features_box .content-icon i {
    transform: rotate(-45deg);
    background-color: silver;
    width: 70px;
    height: 70px;
    top: 14px;
    left: 0px;
    position: relative;
    border-radius: 12px;
}

.features_box .content-icon i:before {
    position: absolute;
    top: 20px;
    left: -33px;
    right: -33px;
    margin-right: 0;
    margin-left: 0;
    transform: rotate(44deg);
}

.features_box {
    height: 254px !important;
    margin: 0px 0 90px !important;
}

.features_box .content-button {
    position: absolute;
    bottom: 10px;
    text-align: center;
    margin: 1px -35px 0;
}

body.kc-css-system .kc-css-94397 .content-icon .fa-tv {
    font-size: 28px;
}

.features_box .content-icon .fa-tv:before {
    top: 9px;
    left: 22px;
    right: 48px;
}

.features_box .content-title {
    margin-top: -37px !important;
}

/* Search Bar */
#search {
    width: 85%;
}

.Search_btn {
    position: absolute;
    right: 0;
    top: 0px;
    padding: 12.5px 50px;
    background: #1f87ff;
    border: 0px solid #1f87ff;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0 6px 6px 0px;
}

.display-in div input#search {
    height: 39px;
}


</pre></body></html>