@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-font/Inter-Regular.ttf") format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "InterSemiBold";
  src: url("../fonts/inter-font/Inter-SemiBold.ttf") format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "InterBold";
  src: url("../fonts/inter-font/Inter-Bold.ttf") format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SharpSansBold";
  src: url("../fonts/CiscoSharpSans-Bold/SharpSans-Bold.eot");
  src: url("../fonts/CiscoSharpSans-Bold/SharpSans-Bold.woff") format("woff"),
  url("../fonts/CiscoSharpSans-Bold/SharpSans-Bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "PatternFlyIcons-webfont";
  src: url("../fonts/PatternFlyIcons-webfont.eot");
  src: url("../fonts/PatternFlyIcons-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/PatternFlyIcons-webfont.ttf") format("truetype"),
    url("../fonts/PatternFlyIcons-webfont.woff") format("woff"),
    url("../fonts/PatternFlyIcons-webfont.svg#PatternFlyIcons-webfont")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
:root {
  --background-color-fff: #ffffff;
  --button-link-primary-color: #1D69CC;
  --button-link-weak-hover: #CCE1FF;
  --button-primary-bg-color: #0D5CBD;
  --control-border-focus: #3e84e5;
  --effects-shadow-focus: 0 0 0 2px var(--button-link-weak-hover), 0 0 0 4px var(--control-border-focus)
}

[class^="pficon-"],
[class*=" pficon-"] {
  display: inline-block;
  font-family: "PatternFlyIcons-webfont";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 12px;
}
.pficon-close:before {
  content: "\e60b";
}
.pficon-error-circle-o:before {
  color: #cc0000;
  content: "\e926";
}
.pficon-warning-triangle-o:before {
  color: #d4371c;
  content: "\e913";
}
.pficon-ok:before {
  color: #00ab50;
  content: "\e602";
}

input.textboxStyle {
  background-color: var(--background-color-fff);
  box-sizing: border-box;
}
.labelStyle {
  font-size: 12px;
  line-height: 18px;
}

.row {
  padding: 5px 0px;
  width: 100%;
}

a.linkStyle {
  color: #1495e4;
  font-size: 13px;
  line-height: 18px;
}
a.linkStyle:hover {
  color: var(--primary-hover, #026e97);
}

.btnStyle,
button.btnStyle {
  font-family: InterBold;
  color: #ffffff;
  min-width: 43px;
  background-color: var(--button-link-primary-color);
  border: 2px solid var(--button-link-primary-color);
  padding: 5px 8px;
  width: 100%;
}
.btnStyle:hover,
button.btnStyle:hover {
  background-color: var(--button-primary-bg-color, #0D5CBD);
  cursor: pointer;
}
button.btnStyleBorder {
  font-family: InterBold;
  color: var(--button-link-primary-color);
  min-width: 43px;
  font-size: 12px;
  line-height: 18px;
  border-radius: 6px;
  border: 2px solid var(--button-link-primary-color);
  background: var(--background-color-fff);
  padding: 5px 8px;
}
button.btnStyleBorder:hover {
  color: var(--button-link-primary-color);
  cursor: pointer;
  background: var(--button-link-weak-hover,#CCE1FF);
}
.btnStyle:disabled,
button.btnStyle:disabled,
button.btnStyleBorder:disabled {
  cursor: not-allowed;
  box-shadow: none;
  width: 100%;
  background: #a3c8ff;
  border: 2px solid #a3c8ff;
}
select.dropdownStyle {
  height: 34px;
  line-height: 31px;
  min-width: 265px;
  border-radius: 5px;
  background: #fbfbfb;
  border: 1px solid #aaa;
}

.errorStyle {
  color: #d4371c;
  font-size: 12px;
  line-height: 18px;
}

.headerLevel1 {
  font-size: 30px;
  height: 40px;
  line-height: 1.42857143;
}

.headerLevel2 {
  font-size: 16px;
  height: 20px;
  margin-top: 10px;
  letter-spacing: 0.5px;
  line-height: 1.42857143;
}
.alertText {
  color: #d4371c;
  font-size: 12px;
  letter-spacing: 0.5px;
  line-height: 18px;
}
.sectionHeader {
  font-size: 16px;
  color: #333333;
  font-weight: 300;
  letter-spacing: 0.5px;
  padding-bottom: 12px;
}

.labelText {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 3px;
}

.labelValue {
  font-size: 14px;
  line-height: 20px;
  color: #4a4a4a;
  letter-spacing: 0.5px;
}

.label-padding {
  padding-bottom: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10ch, 1fr));
  grid-gap: 1em;
}

.success-icon {
  background-image: url(../img/success_16.svg);
  background-size: 15px 15px;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 5px;
  margin-top: 5px;
}

.message-column {
  float: right;
  width: 90%;
  padding-bottom: 7px;
}

.label-padding .labelText {
  grid-column-start: 1;
}
.label-padding .labelValue {
  margin: 0px;
  grid-column-start: span 2;
}
.required:after {
  content: "*";
  color: #4a4a4a;
}
.alert {
  font-size: 16px;
  line-height: 22px;
  display: flex;
  flex-direction: row;
  padding: 12px 16px 12px 16px;
  background: #E3EEFF;
  border-radius: 6px;
  color: var(--base-text-medium-default, #596069);
  margin-top: 2px;
}
.alert-error {
  color: var(--default-text-base, #23282E);
  background: #FFE8E9;
}

/* login -keycloak */
html, body, a, p, input, button {
  font-family: Inter;
  font-weight: normal;
}
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  background: #F7F7F7;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-weight: normal;
}
body a {
  color: var(--button-link-primary-color);
  text-decoration: none;
  font-family: InterSemiBold;
}
body a:hover, body a:visited {
  background: var(--button-link-weak-hover, #CCE1FF);
  border-radius: 6px;
}
body a:focus {
  outline: none;
  box-shadow: var(--effects-shadow-focus);
}
button {
  font-size: 14px;
  line-height: 20px;
  border-radius: 6px;
  height: 28px;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
input {
  height: 28px;
  padding: 8px 5px !important;
  font-size: 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 8px;
}
/* header Change */

/* Header Changes*/

/* content changes */

/* login page */

.login-pf-page {
  width: auto;
  height: 341px;
  margin: 60px auto;
}

.terms-and-conditions .login-pf-page {
  height: 100%;
}
.login.reset-pwd.mobile .login-pf-page {
  height: 500px;
}
.login-container-keycloak {
  display: flex;
}
.card-pf {
  float: left;
  width: 336px;
  min-height: 100%;
  background-color: var(--background-color-fff);
  margin-bottom: 40px;
  padding: 24px;
  box-sizing: border-box;
  border-radius: 2px;
  border-color: #e3e3e3;
  display: block;
  height: 340px;
}

.login.update-pwd.mobile .card-pf,
.login.reset-pwd.mobile .card-pf {
  min-width: 336px;
  width: 100%;
  padding: 0;
}

body.login.mobile .redirect-login,
.terms-and-conditions .redirect-login,
.redirect-error-login {
  display: none;
}

.login.update-pwd.mobile .redirect-login,
.login.error.mobile .redirect-error-login  {
  display: block;
}

.login-pf-header {
  display: flex;
  flex-direction: column;
  justify-items: center;
}
.login-image-keycloak {
  margin: 0 0 0 10px;
}
.terms-and-conditions .login-pf-header {
  margin-top: 0px !important;
  margin-bottom: 10px !important;
  border-bottom: 1px solid #9e9ea2;
  margin-left: -38px;
  margin-right: -38px;
}

.login.update-pwd.mobile,
.login.reset-pwd.mobile {
  background: #ffffff;
}

/* forgot and update pwd changes */
a#forgot-pwd-link{
  padding: 0px;
  font-size: 14px;
  line-height: 20px;
}

/* content Changes */

/* footer Changes */

.login-footer {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  font-size: 12px;
  line-height: 18px;
  color: #808080;
}

.login-footer-content {
  display: flex;
  flex-wrap: wrap;
  margin: 0px;
}

.login-footer-content a.links {
  margin-right: 24px;
  padding: 0px;
  font-family: InterBold;
}
.login-footer-card {
  margin-bottom: 8px;
}
.login-footer #build-ver {
  width: 165px;
}

/* Footer Changes */

/* Mobile Version Changes */

@media only screen and (max-width: 480px) {
  html,
  body {
    background: var(--background-color-fff);
    min-width: 320px;
  }

  .mobile .redirect-login,     
  .mobile #kc-registration,    /* forgot pwd & register , both are supported only for desktop version */
  .mobile #forgot-pw-redirect,
  .mobile .feature-divider,
  .login.reset-pwd.mobile .redirect-login {
    display: none;
  }
  body.login.mobile .login-page-fix-header {
    margin-top: 90px;
  }
  body.login.mobile .center-container {
    padding: 100px 0px 137px 0px;
    width: 267px;
  }

  body.login.mobile .login-image-keycloak {
    display: none;
  }
  body.login.mobile .login-header-content h1 {
    color: #0076D5;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.47px;
    text-align: center;
    margin: 0px auto;
  }
  body.login.mobile .login-header {
    height: 74px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-width: 320px;
  }
  body.login.mobile .login-header-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 320px;
  }
  body.login.mobile .login-pf-page {
    width: 320px;
    margin: 5px auto 0;
    height: 100%;
  }
  body.login.mobile .common-logo-header {
    margin: 0px;
  }

  body.login.mobile .login-footer {
    border-top: 1px solid #eeeeee;
    justify-content: center;
    width: 360px;
  }
  body.login.mobile .login-container-keycloak {
    margin: 0px;
    display: block;
  }
  body.login.mobile .card-pf {
    width: 304px;
    float: none;
    padding: 10px;
    margin: 10px 10px 7px;
    min-height: 250px;
  }
  .login.update-pwd.mobile .card-pf,
  .login.reset-pwd.mobile .card-pf {
    min-width: 336px;
    height: 340px;
  }
}
/* Mobile Version Changes - ENDS */

.text-danger {
  color: #d4371c;
  font-size: 12px;
  line-height: 18px;
}
.kc-group {
  display: block;
  width: 100%;
  margin-top: 24px;
}
/* button styles starts */
.kc-button {
  display: inline-block;
  width: 100%;
}
#kc-form-login .form-group > small,
#kc-reset-password-form .form-group > small {
  display: inline;
  float: right;
}
.kc-features {
  display: flex;
  flex-direction: row;
  margin-top: 36px;
  align-items: center;
  justify-items: center;
  min-width: 320px;
}

a.links {
  font-size: 12px;
  line-height: 18px;
}
.feature-divider {
  color: #eeeeee;
  margin-left: 10px;
  margin-right: 10px;
}
.labelText.login {
  font-family: InterSemiBold;
  color: #23282E;
  font-size: 12px;
  line-height: 18px;
}
#subtitle {
  font-family: SharpSansBold;
  color: #373C42;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
}

.btnStyle.login,
#password-container {
  display: none;
}
.kc-feedback-text {
  font-size: 16px;
  line-height: 22px;
  width: 90%;
}
/*  Terms and condition */
#terms-btn-wrapper {
  display: flex;
  justify-content: right;
  margin-top: 24px;
}
#terms-btn-wrapper .kc-button{
  padding: 0px 0 0px 4px
}

#kc-terms-text {
  font-size: 12px;
}
.terms-and-conditions .card-pf {
  max-width: 674px;
  min-height: 300px;
  width: 100%;
  min-width: 336px;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.08);
  height: 100%;
  border-radius: 12px;
}
.terms-and-conditions #kc-page-title {
  display: none;
}
.new-user {
  display: none;
}
.terms-and-conditions .common-logo-header{
  background-image: url(../img/logo-cisco-magnetic-EULA-web.svg);
  width: 37.58px;
  height: 20px;
}
.terms-and-conditions {
  display: flex;
  flex-direction: column;
}
.terms-and-conditions .logo-container {
  background: linear-gradient(90deg, #373C42 0.29%, #0F1114 100%, #0F1214 100%);
  display: flex;
  padding: 10px 16px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.terms-and-conditions.checkbox label {
  position: relative;
  display: inline-block;
  padding-top: 3px;
  padding-left: 22px;
}
#terms-checkbox-label {
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;

}
span#agreement-text-container {
  margin-left: 8px;
  display: flex;
}
#terms-checkbox {
  display: none;
}
.terms-and-conditions.checkbox label::before,
.terms-and-conditions.checkbox label::after {
  position: absolute;
  content: "";
  display: inline-block;
}
.terms-and-conditions.checkbox label::before {
  height: 16px;
  width: 16px;
  border: 2px solid var(--control-border-default, #889099);
  left: 0px;
  top: 3px;
  border-radius: 4px;
}
.terms-and-conditions.checkbox
  input[type="checkbox"][disabled]
  + label::before {
  background-color: #9b9b9b;
}
.terms-and-conditions.checkbox label::after {
  height: 5px;
  width: 10px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  border-color: #fff;
  transform: rotate(-45deg);
  left: 4px;
  top: 7px;
}

.terms-and-conditions input:checked ~ .labelStyle:before {
  border-radius: 4px;
  background: var(--button-primary-bg-color, #0D5CBD);
  border-color: var(--button-primary-bg-color);
}

.terms-and-conditions.checkbox input[type="checkbox"] + label::after {
  content: none;
}
.terms-and-conditions.checkbox input[type="checkbox"]:checked + label::after {
  content: "";
}
.checkbox.terms-and-conditions {
  display: flex;
  flex-direction: row;
  background-image: none;
  background-color: #ffffff;
}
.terms-and-conditions #kc-page-sub-title,
.terms-and-conditions #kc-content-wrapper {
  margin: 0px;
}
.terms-and-conditions button.btnStyle {
  height: 28px;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 18px;
}
.terms-and-conditions button.btnStyleBorder {
  height: 28px;
  font-size: 12px;
  line-height: 18px;
  padding: 5px 8px;
  color: var(--button-link-primary-color);
  border: 2px solid var(--button-link-primary-color);
  background: var(--background-color-fff);
}
.terms-and-conditions button.btnStyleBorder:hover {
  background: var(--button-link-weak-hover);
}
.login.reset-pwd #kc-page-sub-title {
  font-family: SharpSansBold;
  width: auto;
  line-height: 22px;
  color: #373C42;
  font-size: 16px;
}
#kc-terms-text p {
  font-size: 12px;
  line-height: 18px;
  font-weight: normal;
  letter-spacing: normal;
  text-align: justify;
  color: #000;
  padding: 0 0px 24px 0;
  margin: 0;
}
#kc-terms-text #kc-terms-title {
  font-family: SharpSansBold;
  color: #373C42;
  font-size: 24px;
  line-height: 34px;
  font-style: normal;
}

#kc-terms-text #effective-date {
  font-size: 16px;
  color: #000;
}
#kc-terms-text #cloud-terms-link {
  font-family: InterBold;
  text-decoration: none;
}
#kc-terms-text #cloud-terms-link:hover {
  background: var(--button-link-weak-hover, #CCE1FF);
  border-radius: 6px;
}
.terms-and-conditions .logo {
  transform: scale(0.7);
  margin: -10px -15px -10px 25px;
}
.form-control {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  box-shadow: none !important;
}
#password-policy-wrapper {
  color: #596069;
  padding-left: 18px !important;
  margin-top: 6px;
}
.password-policies {
  text-align: left;
  width: 400px;
  position: relative;
  font-stretch: normal;
  font-style: normal;
  margin-left: -10px;
  font-size: 12px;
  line-height: 18px;
}

.terms-and-conditions .login-footer {
  display: none;
}
/* Terms and condition */

/* Password reset - update password info */

.kc-info-message-pwd-reset{
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 40px;
  width: 100%;
  text-align: center;
}

#check-svg{
  margin-bottom: -3px;
}

div#alert-banner {
  padding: 0.5em 0em 0.5em 0em;
}

.dnxpla { 
  box-sizing:  border-box;
  -webkit-font-smoothing:  antialiased;
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box; 
  display:  flex; 
  align-items:  center; 
  position:  relative; 
  font-weight:  400; 
  line-height:  1.43;
  justify-content: space-between; 
  background-color: white; 
  min-height: 45px;
} 

.dnxpla.visible  { 
  display: flex; 
  visibility: visible; 
  opacity: 1; 
  transition: visibility 0s linear 250ms, opacity 250ms;
} 

.dnxpla.dnx-information  { 
  border: 1px solid #0076D5;
  color: #0076D5;
} 

.dnxpla-msg  { 
  display: flex; 
  margin-right:  40px;
  align-items: center;
}

.dnxpla_close  { 
  font-size: 16px; 
  cursor: pointer; 
  height: fit-content; 
  position: absolute; 
  top: 16px; 
  right: 12px; 
  color: #565659;
} 

.dnxpla_type-icon  { 
  margin-left: 12px; 
  margin-right: 12px;
} 

.dnxpla-msg .dnxpla_type-icon  { 
  font-size: 24px; 
  height: 24px;
} 

.dnxpla_message  { 
  color: #535B62; 
  font-size: 14px;
  padding-top: 4px;
} 

.dnxpla_message .dnx-action  { 
  color: #0076D5; 
  cursor: pointer;
  text-decoration: none;
} 

.dnxpla_message .dnx-action:hover  { 
  color: #0353A8;
} 

svg:not(:root) { 
  overflow: hidden;
} 


/* Password reset - update password info */

/* CCI Login info banner */
div#cci-login-info-banner {
  display: none;
  margin-bottom: 1.5em;
}

div#cci-login-info {
   padding: 12px 12px 12px 0px;
   margin-right: 35px;
}
div#cci-login-info-message {
  color: #121212;
  font-weight: 400;
  letter-spacing: 0.5px;
}

div#cci-login-info-container {    
  border: 1px solid #0E69CB;
}

div#cci-login-footter{
  padding-top: 10em;
}

div#cci-login-pf-page {
  margin: 30px auto;
}
/* CCI Login info banner */

/** MAGNETIC LOGIN CHANGES **/

#mobile-carousel {
  display: none;
}
.carousel {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-inner {
  height: 100%;
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-inner .carousel-item {
  flex: 0 0 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.carousel-inner .carousel-item.lazy:nth-child(1) {
  background-image: url("../img/SEA.jpg");
}

.carousel-inner .carousel-item.lazy:nth-child(2) {
  background-image: url("../img/CV.jpg");
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--background-color-fff);
  margin-right: 12px;
  cursor: pointer;
}

.carousel-indicators li.active {
  background-color: var(--button-link-primary-color);
}

.carousel-inner .carousel-item .content {
  display: flex;
  flex-direction: column;
  align-items: start;
  position: absolute;
  bottom: 120px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 80%;
  padding: 36px 24px 24px 36px;
  width: 60%;
}

.slide-title {
  font-size: 32px;
  line-height: 38.4px;
  padding: 0px;
}

p.slide-content {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 24px 0 0 0;
}

.slide-learn-more-link {
  font-family: InterBold;
  cursor: pointer;
  color: #fff;
  padding: 5px 8px;
  border: 2px solid #FFFFFF;
  border-radius: 6px;
  font-size: 12px;
  line-height: 18px;
  text-decoration: none;
  margin-top: 24px;
}
.slide-learn-more-link:hover{
  background: var(--button-primary-bg-color);
}

.login-container {
  display: flex;
  height: 100vh;
  background: var(--background-color-fff);
}

.login-left-side-containier {
  flex-grow: 1;
}

.banner-info-icon {
  background: url("../img/info-icon.svg");
  width: 100px;
  height: 19px;
  margin-right: 12px;
  background-repeat: no-repeat;
}


.banner-cci-info-icon {
  background: url("../img/info-icon.svg");
  min-width: 30px;
  height: 19px;
  margin-right: 12px;
  background-repeat: no-repeat;
}

.login-page-fix-header {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 1px solid white;
  padding: 13px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #2774d9;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  flex-direction: row;
  text-align: justify;
  padding-right: 25px;
}

/* for mobile version margin-top should be 100px */
.login-error-banner.mobile {
  margin-top: 100px;
}

.login-error-banner {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 1px solid white;
  padding: 13px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #cc2d37;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  flex-direction: row;
  text-align: justify;
  padding-right: 25px;
}

.banner-error-icon {
  background: url("../img/error-icon.svg");
  min-width: 30px;
  height: 19px;
  margin-right: 12px;
  background-repeat: no-repeat;
}

.login-right-side-containier {
  flex-basis: 326px;
  background-color: var(--background-color-fff);
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 36px 36px 20px 36px;
}

.login-right-side-containier .page-title {
  margin-bottom: 0px;
  font-size: 24px;
}

.login-right-side-containier .login-form {
  width: 80%;
  padding: 20px;
}

.login-right-side-containier .form-group label {
  font-family: InterSemiBold;
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: #23282E;
}

.login-right-side-containier .form-group input[type="text"],
.login-right-side-containier .form-group input[type="password"] {
  width: 100%;
  border: 2px solid #889099;
}

.logo-container {
  display: flex;
  align-items: center;
}

.common-logo-header {
  background: url("../img/logo-cisco-magnetic-980px.svg");
  width: 34px;
  height: 17px;
  margin-right: 10px;
}

.logo-title h1#kc-page-title {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #373C42;
}

.center-container{
  height: 100%;
  display: flex;
  justify-content: normal;
  flex-direction: column;
}

.btnStyle.next, .btnStyle.login,
button#kc-passwd-reset{
  width: 100%;
  margin-top: 24px;
}
.instruction{
  font-family: Inter;
  color: #464C54;
  font-size: 16px;
  line-height: 22px;
}

.request-org-text, .redirect-login, .redirect-error-login{
  font-family: Inter;
  color: #464C54;
  font-size: 16px;
  line-height: 22px;
}

.redirect-error-login{
  margin-top: 24px;
}
.redirect-login {
  margin-top: 12px;
}

.login.update-pwd.mobile .request-org-text,
.login.reset-pwd.mobile .request-org-text {
    display: none;
}

body.login.mobile .request-org-text{
  display: block;
}

.redirect-login a, 
.redirect-error-login a {
  line-height: 22px;
}

span.copyrights {
  margin-right: 24px;
}

/** INFO CSS **/
.fa {
  width: 30px;
}

.fa.fa-fw.fa-check-circle{
  background: url("../img/alerts.svg");
  background-repeat: no-repeat;
}

.fa.fa-fw.fa-exclamation-triangle {
  background: url("../img/error.svg");
  background-repeat: no-repeat;
}

/** Mobile Responsive CSS for MAGNETIC Login **/
@media (max-width: 959px){
  .login-page-fix-header{
    margin-top: 90px;
  }
  .login-container{
    display: block;
  }
  .login-left-side-containier {
      display: none
  }
  .login-right-side-containier {
      padding: 0;
      width: 100%;
      flex: 0 0 100%;
      flex-direction: column;
      align-items: center;
  }
   .logo-container,
   .terms-and-conditions .logo-container{
      position: fixed;
      top: 0;
      background: var(--background-color-fff);
      height: 74px;
      border-top: 4px solid #0E69CB;
      box-shadow: 0px 2px 7px 0px #00000033;
      width: 100%;
      justify-content: center;
      align-items: center;
      z-index: 99;
      align-self: center;
      padding: 0;
  }
  .logo-title h1#kc-page-title{
    font-size: 16px;
    line-height: 22px;
  }
  .common-logo-header,
  .terms-and-conditions .common-logo-header {
    background: url("../img/logo-cisco-magnetic-mobile.svg");
    width: 62.7px;
    height: 34px;
  }
  body.login.mobile .common-logo-header,
  .terms-and-conditions .common-logo-header{
      margin-right: 18px;
  }
  .center-container{
      padding: 0px 0px 137px 0px;
      width: 267px;
  }
  .kc-features{
    margin-top: 18px;
  }
  .kc-group{
    margin-top: 12px;
  }
  #subtitle{
      font-size: 18px;
      line-height: 24px;
  }
  .request-org-text, .redirect-login, a#request-org-link{
      font-size: 14px;
      line-height: 20px;
  }
  .login-right-side-containier h2{
      margin: 24px 0 12px 0;
  }
  .btnStyle.next, .btnStyle.login, button#kc-passwd-reset{
      width: 100px;
      margin-top: 18px;
  }
  #mobile-carousel {
    display: block;
    height: 165px;
  }
  .slide-title {
    font-size: 14px;
    line-height: 20px;
    font-family: InterBold;
    padding: 0px;
  }
  p.slide-content{
    margin: 8px 0;
  }
  .carousel-inner .carousel-item {
      width: 100%;
      background-image: none !important;
  }
  .carousel-inner .carousel-item.active {
    display: block;
  }
  .carousel-inner .carousel-item .content{
      width: 100%;
      background: var(--background-color-fff);
      position: initial;
      padding: 0px;
      color: #373C42;
      font-family: Inter;
      font-size: 14px;
      font-style: normal;
      line-height: 20px;
      margin-bottom: 10px;
  }
  .slide-learn-more-link{
    color: var(--button-link-primary-color);
    border: 0px;
    padding: 0;
    font-size: 14px;
    line-height: 20px;
    margin-top: 0;
    flex-shrink: 0;
  }
  .slide-learn-more-link:hover{
    background: var(--button-link-weak-hover, #CCE1FF);
  }
  .carousel-indicators{
    justify-content: start;
    width: 100%;
    bottom: 14px;
    left: 0;
    transform: none;
  }
  .carousel-indicators li{
      background: #E1E4E8;
  }
  .carousel-indicators li:first-child {
    margin-left: 0 ;
  }
  body.login.mobile .login-footer{
      position: fixed;
      bottom: 0;
      background: var(--background-color-fff);
      width: 100%;
      justify-content: center;
      border-radius: 1px;
      padding: 16px 0 4px 0;
      box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
  }
  .login-footer-content{
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    height: auto;
  }
  #build-ver{
      justify-content:center;
      margin-top: 0;
  }
  .login-footer-card {
    margin-bottom: 12px;
  }
  .login-footer-content a.links{
    margin-right: 10px;
  }
  span.copyrights{
    margin-right: 0;
  }

  /*EULA TERMS*/
  .terms-and-conditions {
    justify-items: center;
    align-items: center
  }
  .terms-and-conditions #kc-page-title {
    font-size: 19px;
    display: inline-block;
    vertical-align: middle;
  }

  .terms-and-conditions .login-footer {
    display: block;
    position: fixed;
    bottom: 0;
    background: var(--background-color-fff);
    width: 100%;
    padding: 16px 0px 4px 0px;
  }
  .terms-and-conditions .card-pf {
    width: 267px;
    flex-shrink: 0;
  }

  .terms-and-conditions .login-pf-page {
    margin-top: 120px;
    margin-bottom: 120px;
  }

  .terms-and-conditions span#agreement{
    display: inline-block;
  }

}
/* 
  Any screen greater than or equal to 960px for password reset page, 
  we adjust the margins and add a scroll to the center-container
*/
@media screen and (min-width: 960px){
    .reset-pwd .center-container {
        margin-top: 60px;
        margin-bottom: 36px;
        padding-right: 16px;
        display: block;
        overflow-y: auto;
    }
  } 

/* For Larger screens (Laptops/PCs) - between 1200px to 1919px => 1440px */
@media screen and (min-width: 1200px) and (max-width: 1919px) {
  .common-logo-header {
    background: url("../img/logo-cisco-magnetic-1440px.svg");
    width: 48px;
    height: 24px;
  }
  .logo-title h1#kc-page-title {
    font-size: 18px;
    line-height: 24px;
  }
  .kc-feedback-text{
    font-size: 14px;
    line-height: 22px;
  }
}

/* For Larger screens (Laptops) => 1440px */
@media screen and (min-width: 1440px) {
  .slide-title{
    font-size: 50px;
    line-height: 60px;
  }
  .login-right-side-containier{
      padding: 36px 50px 28px 50px;
      flex-basis: 380px;
  }
  #subtitle {
    font-size: 24px;
    line-height: 34px;
  }
  .login.reset-pwd #kc-page-sub-title{
    font-size: 24px;
    line-height: 34px;
  }
}

/* For Larger screens(Extended Monitors) - 1920px */
@media screen and (min-width: 1920px) {
  input {
    height: 46px;
    padding: 9px 16px !important;
  }
  button {
    height: 48px;
  }
  .common-logo-header {
    background: url("../img/logo-cisco-magnetic-1440px.svg");
    width: 48px;
    height: 24px;
  }
  .logo-title h1#kc-page-title {
    font-size: 18px;
    line-height: 24px;
  }
  .slide-title{
    font-size: 50px;
    line-height: 60px;
  }
  p.slide-content{
    font-size: 18px;
    line-height: 24px;
  }
  .slide-learn-more-link{
    font-size: 14px;
    line-height: 20px;
    padding: 7px 12px;
  }
  .login-right-side-containier {
      padding: 48px 65px 40px 65px;
      flex-basis: 506px;
  }
  .btnStyle.next, .btnStyle.login, button#kc-passwd-reset {
    margin-top: 36px;
  }
  #subtitle {
    font-size: 24px;
    line-height: 34px;
  }
  .login.reset-pwd #kc-page-sub-title{
    font-size: 24px;
    line-height: 34px;
  }
  #subs-text {
    display: inline;
  }
  a#request-org-link{
    display: inline;
    margin-left:8px;
  }
  .labelText {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 8px;
  }
}

/* For Extra Larger screens - 2560px */
@media screen and (min-width: 2560px) {
  input {
    height: 46px;
    padding: 9px 16px !important;
  }
  button {
    height: 48px;
  }
  .logo-title h1#kc-page-title{
    font-size: 20px;
    line-height: 24px;
  }
  .slide-title{
    font-size: 50px;
    line-height: 60px;
  }
  .login-right-side-containier {
      padding: 85px 85px 40px 85px;
      flex-basis: 673px;
  }
  .common-logo-header {
    background: url("../img/logo-cisco-magnetic-2560px.svg");
    width: 68px;
    height: 34px;
  }
  .btnStyle.next, .btnStyle.login, button#kc-passwd-reset {
    margin-top: 36px;
  }
  #subtitle {
    font-size: 32px;
    line-height: 34px;
  }
  .login.reset-pwd #kc-page-sub-title{
    font-size: 32px;
    line-height: 34px;
  }
  #subs-text {
    display: inline;
  }
  a#request-org-link{
    display: inline;
    margin-left:8px;
  }
  .labelText {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 8px;
  }
}

/* login -keycloak */