@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!important;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  }
#navbar-main {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    padding: 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  
}

/* Left Logo Section */
.navbar-brand {
    background-color: #c10230; /* Red background */
    padding: 30px 40px;
    display: flex;
    align-items: center;
    margin-left: 12px;
}

.navbar-brand img {
    max-height: 60px;
}

/* Centered Navigation */
.navbar-nav {
    display: flex;
    flex-grow: 1;
    justify-content: center;
}


.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 700;
    color: #333; /* Dark text */
    text-transform: uppercase;
    padding: 15px 20px!important;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-item.active .nav-link {
    color: #c10230; /* Red for active & hover */
  
}

/* Right Aligned Buttons */
.navbar-buttons {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.navbar-buttons .btn {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
}

.btn-login {
    background-color: #c10230; /* Red */
    border: none;
}

.btn-login:hover {
    background-color: #a10025;
}

.btn-create-account {
    background-color: #730d13; /* Darker Red */
    border: none;
}

.btn-create-account:hover {
    background-color: #590b10;
}


/* Flex container for alignment */
#block-ssw-account-menu ul {
    display: flex;
    align-items: center;
    gap: 10px; /* Spacing between buttons */
    list-style: none;
    padding: 0;
    margin-left: auto; /* Push to the right */
    margin-right: 40px;
}

/* Common button styles */
#block-ssw-account-menu .nav-link {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 30px;
    border: none;
    border-radius: 0; /* No rounded corners */
    transition: background 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
/* Ben's Common button styles */
    color: #444;
}

/* Login Button */
#block-ssw-account-menu .nav-link--ce-ssw-user-login, #block-ssw-account-menu .nav-link--ce-ssw-user {
    background-color: #c10230; /* Bright Red */
}

#block-ssw-account-menu .nav-link--ce-ssw-user-login:hover, #block-ssw-account-menu .nav-link--ce-ssw-user:hover {
    background-color: #a10025;
}

/* Create Account Button */
#block-ssw-account-menu .nav-link--ce-ssw-user-register {
    background-color: #730d13; /* Darker Red */
}

#block-ssw-account-menu .nav-link--ce-ssw-user-register:hover {
    background-color: #590b10;
}

.user-login-form label::before, .user-register-form label::before {
    display: none !important;
}



/*Banner Section*/
.banner-section {
    position: relative;
    width: 100%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url(/sites/default/files/2025-07/rutgers-laptop-01.png);
    background-size: cover;
    min-height: 600px;
    background-position-y: 65%;    
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.text-overlays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    width: 90%;
}

.title {
    font-size: 4rem;
    font-weight: bold;
}

.subtitle {
font-size: 2.25rem;
}


#block-ssw-content .views-row {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Ensures responsive grid */
    gap: 20px; /* Adds proper spacing */
    padding: 15px;
    justify-content: center;
}

/* Individual Cards */
#block-ssw-content .views-col {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 0px;
    
    box-shadow:  3px 3px 18px #00000019;
    overflow: hidden;
    position: relative;
    min-height: 380px; /* Ensures equal height */
}

/* Red Top Border */
#block-ssw-content .views-col::before {
    content: "";
    width: 100%;
    height: 8px;
    background: #CC0033;
    position: absolute;
    top: 0;
    left: 0;
}

/* Middle Content */
#block-ssw-content .views-content {
    flex-grow: 1;
    padding: 15px;
    text-align: center;
    background: #f9f9f9;
}

/* Add to Cart Button */
#block-ssw-content .button--add-to-cart {
    display: block;
    width: 100%;
    padding: 12px;
    background: #CC0033;
    color: #fff;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

#block-ssw-content .button--add-to-cart:hover {
    background: #b71c1c;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    #block-ssw-content .views-row {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for medium screens */
    }
}

@media (max-width: 600px) {
    #block-ssw-content .views-row {
        grid-template-columns: 1fr; /* 1 column for small screens */
    }
}

.menu--account {
    position: absolute;
  right: 0;
}




/* Responsive Adjustments */
@media (max-width: 992px) {
    .navbar-nav {
        flex-direction: column;
        text-align: center;
    }

    .navbar-buttons {
        justify-content: center;
        margin-top: 10px;
    }
}

/* login page */

/* General Styles */
.login-wrapper {
display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  background: url('../images/login-bg.png');
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto;
  background-size: cover;
  background-position: center;
  padding-left: 18vw;
}

.login-container {
padding: 40px;
  border-radius: 10px;
  /*backdrop-filter: blur(10px);*/
  width: 500px;
  color: white;
  text-align: left;

}

.login-form h2 {
  font-size: 2.2rem;
  font-weight: bold;
}

.login-form p {
font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Form Fields */
.form-group {
  margin-bottom: 15px;
}

.login-container .form-group input {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  background: transparent;
  color: white;
}
.login-buttons{
    display: flex;
}
.login-container .form-group input::placeholder {
  color: #ddd;
}

/* Buttons */
.login-buttons {
  display: flex;
  gap: 10px;
}

.login-buttons input[type="submit"] {
  width: 100px;
  background: #CC0033!important;
  color: white;
  font-size: 18px;
  padding: 12px;
  border: none;
    border: solid 1px #fff;
  border-radius: 0px;
  font-weight: 600;
}

.login-buttons input[type="submit"]:hover {
  background: darkred;
}

.login-buttons a{
    border: solid 1px #fff;
    padding: 0px 20px;
    line-height:46px ;
    font-weight: 600;
}
.forgot-password {
  color: white;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

/* Register Link */
.register-link {
  margin-top: 15px;
}

.register-link a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.register-link a:hover {
  text-decoration: underline;
}


.page-user-login .highlighted, .page-user-login .block-page-title-block,
.page-user-register .highlighted, .page-user-register .block-page-title-block
{
    display:none;
}

/*.featured-top .container-fluid {
  padding-right: 1;
  padding-left: 0;
  margin-right: 0;
  margin-left: 0;
}*/


/* registration */

.region-featured-top .block-content-title_description{
padding: 0;
}
.webinar-title h3 {
color: #1C1D21;
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 5px 5px 30px;
  display: inline-block;
  min-height: 96px;
}
.webinar-title h3 a{
color: #1C1D21;
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: bold;
  padding: 15px 15px 0 15px;
  display: inline-block;
  min-height: 96px;
}

.form-type-commerce-price {
    display: none;
}
.product-section, .webinar-details {
  padding: 15px 20px 0 20px
}
.product-section{
     background-color: #282B2F;
   padding: 10px 32px;
  margin: 20px;
}
.product-section div{
   
    color: #DDDDDD;
    padding: 8px 0px;
    border-bottom: solid 1px #ABAFB3;
    font-weight: normal;
}
.views-field-field-course-type strong,.views-field-field-course-credithours strong{
font-weight: normal;
}
.commerce-order-item-variation-cart-form-form .form-actions {
 padding: 30px 20px;
}
.webinar-details .field_summary {
  min-height: 120px;
}
.product-section div.price__number {
  border: 0;
}
.commerce-order-item-variation-cart-form-form .form-actions  input{
border-radius:0
}
#block-ssw-content .views-row{
    display: flex;
}
#block-ssw-content  .views-view-grid .views-col {
cursor: pointer;
    float: none;
}
.home-webinar-filter .form-radios label{
    font-size: 1.1rem;
    padding: 15px 10px; 
    display: block;
}
.home-webinar-filter .form-radios .form-check{padding-left: 0em;}
.home-webinar-filter .form-radios input[checked="checked"]{background: transparent;}
.home-webinar-filter .form-radios input[checked="checked"] + label{ background:#ff00001c; border-left:solid 5px #CC0033; color:#CC0033; font-weight: bold;}
.bef-exposed-form.home-webinar-filter-main{
    background: #F8F9FA;
}
.home-webinar-filter .form-radios input:focus{
    box-shadow:none;
    outline: 0;
}
.home-webinar-filter .form-radios input{
    background: none;
}

.block-views-blockcategories-filter-block-1{
    border-left:solid 5px #CC0033;
    color:#CC0033;
    font-weight: bold;
    background: transparent;
}

.view-id-categories_filter .field-content {
color: rgb(28, 29, 33);
font-size: 1.1rem;
display: inline-block;
text-decoration: none;
padding: 0px 0px 10px 2em;
}

.field_course_id {
   background: #F8F8F8;
    opacity: 1;
    /* height: 45px; */
    color: #000000;
    font-size: 12px;
    line-height: 2;
    padding: 5px;
    font-weight: bold;
}

.field_summary {
    font-size: 16px;
    text-align: left;
    padding: 10px 0px;
    color: #606060;
}

.view_commerce_product a {
    font-size: 13px;
    text-align: left;
    padding: 10px 0px;
    color: #9C9C9C;
    text-decoration: none;
}

#block-ssw-exposedformduplicate-of-webinar-variations{
    display: flex;
    justify-content: space-between;
}

#block-ssw-webinars3-page_1{
    display: flex;
    justify-content: space-between;
}

.page-user-login .main-content, .page-user-register .main-content {
padding: 0px;
}


.node--type-page .container-fluid {
    max-width: 1320px;
    padding:20px 0px;
}


/* Apply background image to the whole page */
.page-user-register #main-wrapper, .path-checkout #main-wrapper {
  /* Ben Commented Out background: url('../images/reg-background.png') no-repeat center center fixed; */
  /* Ben Commented Out background-color: rgba(34, 34, 34, 0.8); /* Slightly transparent */
  background-size: cover;
  font-family: 'Arial', sans-serif;
}

/* Form container */
.user-register-form {
  color: #fff;
  padding: 40px;
  border-radius: 10px;
}

/* Form headings */
.user-register-form h1,
.user-register-form h2 {
  color: #fff;
}

.user-register-form h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-size: 34px;
  font-weight: bold;
}

/* Sections inside form */
.user-register-form .registration-section {
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

/* Bootstrap row and column adjustments */
.user-register-form .row {
  margin-bottom: 15px;
}

.user-register-form .col-md-6 {
  margin-bottom: 15px;
  padding: 0px 75px 0px 13px;
}

/* Labels */
.user-register-form label, .commerce-checkout-flow-multistep-default label  {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
/*  color: #fff; White labels */
}

/* Input fields */
.user-register-form input,
.user-register-form select,
.user-register-form textarea,
.commerce-checkout-flow-multistep-default input,
.commerce-checkout-flow-multistep-default select,
.commerce-checkout-flow-multistep-default textarea {
  /*width: 100%;*/
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #555;
/* background-color: rgba(34, 34, 34, 0.8); Slightly transparent */
/*  color: #fff; */
}

/* Placeholder text */
.user-register-form input::placeholder,
.user-register-form textarea::placeholder,
.commerce-checkout-flow-multistep-default input::placeholder,
.commerce-checkout-flow-multistep-default textarea::placeholder {
  color: #ccc;
}

/* Submit button */
.user-register-form .register-button {
  text-align: center;
  margin-top: 20px;
}

.user-register-form .register-button input[type="submit"] {
  background-color: #c8102e;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

.user-register-form .register-button input[type="submit"]:hover {
  background-color: #a10c25;
}
.registration-container {
  margin-top: 100px;
}
/* Heading: "Create an Account" */
.registration-container h1 {
  text-align: center;
  font-size: 52px; /* Adjust size as per design */
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px; /* Space between heading and description */
}

/* Description Text */
.registration-container .description_top {
  text-align: center;
  font-size: 22px; /* Adjust size as per design */
  color: #ddd; /* Light grey for readability */
  max-width: 600px; /* Ensures readability */
  margin: 0 auto 20px; /* Centers the text */
  line-height: 1.5;
}

/* Pagination: Styles for pagination on Views */

.pagination {
  --bs-pagination-bg: ##fff
  }

.user-register-form .button--primary:hover {
  background-color: #e65c00; /* Slightly darker shade on hover */
}


.table, .table th {
    color:#000;
}

 .webinar-content {
            max-width: 800px;
            margin: 20px auto;
            background: #fff;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
        }
        .banner {
            background: url('banner.jpg') no-repeat center center/cover;
            color: white;
            padding: 40px;
            text-align: center;
            font-size: 24px;
            font-weight: bold;
        }
        .details {
            display: flex;
            justify-content: space-between;
            margin: 20px 0;
        }
        .description {
            margin-bottom: 20px;
        }
        .price {
            text-align: center;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .price button {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            font-size: 16px;
            border-radius: 5px;
        }
        .objectives {
            margin-top: 20px;
        }
        .objectives h2 {
            font-size: 20px;
            margin-bottom: 10px;
        }
        .objectives ul {
            list-style: none;
            padding: 0;
        }
        .objectives ul li {
            background: url('checkmark.png') no-repeat left center;
            padding-left: 25px;
            margin-bottom: 10px;
        }

/* Ben's Custom Styles */

  @media (max-width:991px) {
    #block-ssw-content .views-row {
      display: unset; 
    } 
  }

  tr { 
    border: unset;
    background: unset;
  }

  table {
    font-size: 1em;
  }

  .ssw-product-webinar-details-top {
    width: 100%;
    background-color: #444;
    color: #fff;
    padding: 50px;
    font-size: 1.2em;
}
.ssw-product-webinar-details-top .field {
    border-bottom: 1px solid white;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.ssw-product-details-link {
padding: 0px 20px 15px 20px;
}

@media only screen and (max-width: 992px) {
#block-ssw-content .views-view-grid .views-col {width:100% !important; }
.block-views-blockcategories-filter-block-1 { display: none; }
}

.nav-link { color: #000 !important; }

#navbar-top {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    margin: 0 12px;
}

div#main {
    min-height: 800px;
}

.page-user-register #main-wrapper {
background-color: #000;
}

div#edit-custom-checkout-message {
font-size: 1.2em;
padding: 20px;
margin: 20px;
}

fieldset#edit-login-guest {
display: none;
}

div#edit-custom-checkout-message {
font-size: 1.2em;
padding: unset;
margin: 20px;
}

.layout-checkout-form { padding:30px; }

.view.view-commerce-checkout-order-summary {
font-size: 1.2em;
}

.checkout-complete {
font-size: 1.2em;
padding: 40px;
}

a.nav-link.active {
color: #fff !important;
}

.view-commerce-user-orders .table th a {
color: #000 !important;
}

.view-commerce-user-orders .table {
background-color: #eee;
}

.view-id-categories_filter .field-content {
    color: rgb(28, 29, 33);
    font-size: 1.1rem;
    display: inline-block;
    text-decoration: none;
    font-weight: 300;
    color: #444;
    padding: 5px 0;
}

.view-id-categories_filter .field-content a {
    text-decoration: none;
    color: #444;
}

