@charset "utf-8";
/* CSS Document */

@import "https://fonts.googleapis.com/css?family=Istok+Web:400,700|Ubuntu:400,700&display=swap";
body {
    font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    box-sizing: border-box;
}

.row { max-width: 85rem; }

a {
    color: #0039C1;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Istok Web', sans-serif;
    margin-top: 0;
    margin-bottom: 1rem;
}
a {
    color: #0039c1;
}
a:hover {
    color: #0039c1;
    text-decoration: underline;
}
.btn {
    display: inline-block;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 11px 15px;
    font-size: .875rem;
    line-height: 1.2;
    border-radius: 0;
    transition: all .15s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn:hover {
    text-decoration: none;
}
.btn-primary {
    color: #0039C1;
    background-color: transparent;
    background-image: none;
    border-color: #0039C1;
}
.btn-primary:hover {
    color: #fff;
    background-color: #0039C1;
    border-color: #0039C1;
}
.btn-primary-2 {
    color: #fff;
    background-color: #0039C1;
    background-image: none;
    border-color: #0039C1;
}
.btn-primary-2:hover {
    color: #fff;
    background-color: #00298a;
    border-color: #00298a;
}

.btn-primary-3 {
    color: #fff;
    background-color: #00B250;
    background-image: none;
    border-color: #00B250;
}
.btn-primary-3:hover {
    color: #fff;
    background-color: #008A3E;
    border-color: #008A3E;
}
.btn-secondary {
    color: #333;
    background-color: #fff;
    background-image: none;
    border-color: #ccc;
}
.btn-secondary:hover {
    color: #0039C1;
    background-color: #efefef;
    border-color: #ccc;
    text-decoration: none;
}
.btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
}

/* Header */
header.commscope-header {
    background: #fff;
    text-align: center;
    position: relative;
    z-index: 999;
    width: 100%;
    padding: 14px 0;
    font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-box-shadow: 0px 5px 5px -5px rgba(0,0,0,0.89);
    -moz-box-shadow: 0px 5px 5px -5px rgba(0,0,0,0.89);
    box-shadow: 0px 7px 4px -6px rgba(0,0,0,0.29);
    margin-bottom: 1.75rem;
}
.commscope-header .logo {
    padding: 8px 0 4px 0;
}
/* allows it to gain focus, making it tabbable */
.commscope-header .nav-toggle {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}
.commscope-header .nav-toggle:focus ~ .nav-toggle-label {
    outline: 2px solid rgba(173, 216, 230, 0.75);
}
.commscope-header .nav-toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 1em;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.commscope-header .nav-toggle-label span, .commscope-header .nav-toggle-label span::before, .commscope-header .nav-toggle-label span::after {
    display: block;
    background: #000;
    height: 3px;
    width: 2rem;
    border-radius: 2px;
    position: relative;
}
.commscope-header .nav-toggle-label span::before, .commscope-header .nav-toggle-label span::after {
    content: '';
    position: absolute;
}
.commscope-header .nav-toggle-label span::before {
    bottom: 7px;
}
.commscope-header .nav-toggle-label span::after {
    top: 7px;
}
.commscope-header nav {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background: #fff;
    width: 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    transition: -webkit-transform 400ms ease-in-out;
    -webkit-transition: -webkit-transform 400ms ease-in-out;
    -o-transition: transform 400ms ease-in-out;
    transition: transform 400ms ease-in-out;
    transition: transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
    border: 1px solid #ccc;
    border-top: .5px solid #ccc;
    padding-top: 14px;
}
.commscope-header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;

}
.commscope-header nav li {
    margin-bottom: 1em;
    margin-left: 1em;
}
.commscope-header nav a {
    color: #444;
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    opacity: 0;
    -webkit-transition: opacity 150ms ease-in-out;
    -o-transition: opacity 150ms ease-in-out;
    transition: opacity 150ms ease-in-out;
}
.commscope-header nav a:hover {
    color: #000;
}
.commscope-header .nav-toggle:checked ~ nav {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}
.commscope-header .nav-toggle:checked ~ nav a {
    opacity: 1;
    -webkit-transition: opacity 250ms ease-in-out 250ms;
    -o-transition: opacity 250ms ease-in-out 250ms;
    transition: opacity 250ms ease-in-out 250ms;
}

/* 1279/80 would be the width if all top level menu items are added */
/*@media screen and (max-width: 1279px) {*/
@media screen and (max-width: 879px) {
.commscope-header nav a:hover {
    color: #000;
    padding-left: 5px;
    border-left: 4px solid #0039C1;
}
}

/*@media screen and (max-width: 1280px) {*/
@media screen and (min-width: 880px) {
.commscope-header .nav-toggle-label {
    display: none;
}
.commscope-header nav {
    border: 0px;
}
header.commscope-header {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 250px auto minmax(400px, 3fr) 0.05fr;
    grid-template-columns: 200px auto minmax(400px, 3fr) 0.05fr;
}
.commscope-header .logo {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    width: 250px;
    margin: 0 1.5rem;
}
.commscope-header nav {
    /* the following lines add Edge support */
    position: relative;
    text-align: left;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    background: none;
    top: initial;
    left: initial;
    /* end Edge support stuff */
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3 / 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.commscope-header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.commscope-header nav li {
    margin-left: 3em;
    margin-bottom: 0;
}
.commscope-header nav a {
    opacity: 1;
    position: relative;
}
.commscope-header nav a::before {
    content: '';
    display: block;
    height: 8px;
    background: #0039c1;
    position: absolute;
    bottom: -.60em;
    left: 0;
    right: 0;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    transition: -webkit-transform ease-in-out 250ms;
    -webkit-transition: -webkit-transform ease-in-out 250ms;
    -o-transition: transform ease-in-out 250ms;
    transition: transform ease-in-out 250ms;
    transition: transform ease-in-out 250ms, -webkit-transform ease-in-out 250ms;
}
header.commscope-header nav a:hover::before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}
}
	
	
.commscope-footer {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-evenly;*/
    justify-content: space-around;
    align-items: top;
    font-family: 'Istok Web', sans-serif;
    background-color: #0071bb;
    background-image: -webkit-linear-gradient(left, #0071bb 0%, #272ba7 100%);
    background-image: linear-gradient(90deg, #0071bb 0%, #272ba7 100%);
    margin: 2rem auto 0 auto;
}
.commscope-footer a {
    color: #fff;
    text-decoration: none;
}
.commscope-footer a:hover {
    text-decoration: underline;
}
.commscope-footer div {
    padding: 1.5rem .75rem;
    /*width: 25%;*/
    line-height: 1.7;
    color: white;
}
.commscope-footer h3 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-size: 1.4rem;
    margin-bottom: .2rem;
	color: #fff;
}
.commscope-footer ul {
    margin: 0;
    padding: 0;
}
.commscope-footer li {
    list-style: none;
}

@media all and (max-width: 760px) {
.commscope-footer {
    flex-direction: column;
    padding-top: 1.5rem
}
.commscope-footer div {
    width: 100%;
    text-align: center;
    padding: 0 0 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.250);
}
.commscope-footer h3 {
    margin: 6px 0;
    line-height: 1.8;
}
}
/* ------------------ footer bottom ------------------ */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: top;
    width: 100%;
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 5px;
    color: #fff;
    font-size: .85rem;
}
.footer-bottom ul {
    border: 0px;
}
.footer-bottom .social img {
    margin-left: 16px;
    margin-bottom: 1.5rem;
}
.footer-bottom .other-links ul {
    padding-left: 0;
}
.footer-bottom .other-links li {
    list-style: none;
    display: inline;
    margin-left: 1rem;
}

@media all and (min-width: 760px) {
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.250);
    margin: 0 5%;
}
.footer-bottom .social {
    width: 75%;
}
}

@media all and (max-width: 760px) {
.footer-bottom div {
    flex-direction: column;
    text-align: center;
    border: 0px;
}
.footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 0;
    padding: 1.5rem 2rem 0rem 0;
}
}
.t-right {
    text-align: right;
}
.f-container {
    max-width: 1370px;
    padding-left: auto;
    padding-right: auto;
}

@media (min-width: 576px) {
	.f-container {
		max-width: 1280px;
	}
	}

@media (min-width: 768px) {
	.f-container {
		max-width: 1280px;
	}
	}

@media (min-width: 992px) {
	.f-container {
		max-width: 1280px;
	}
	}

@media (min-width: 1200px) {
	.f-container {
		max-width: 1280px;
	}
	}
/* end footer */
			



.card {
    display: flex;
    flex-direction: column;
    margin: 0 0 12px 0;
    position: relative;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #ccc;
    color: #333;
}
[class*=card-bar-]:before {
    content: '';
    margin-right: -1px;
    margin-left: -1px;
    position: absolute;
    width: calc(100% + 2px);
    height: 6px;
    background-color: #00adef;
}
.card-bar-red:before {
    background-color: #eb008f;
    background-image: -webkit-linear-gradient(90deg,#eb008f,#ec1c24);
    background-image: -o-linear-gradient(90deg,#eb008f,#ec1c24);
    background-image: -moz-linear-gradient(90deg,#eb008f,#ec1c24);
    background-image: linear-gradient(90deg,#eb008f,#ec1c24);
}
.card-bar-orange:before {
    background-color: #ef6623;
    background-image: -webkit-linear-gradient(90deg,#ef6623,#ffc012);
    background-image: -o-linear-gradient(90deg,#ef6623,#ffc012);
    background-image: -moz-linear-gradient(90deg,#ef6623,#ffc012);
    background-image: linear-gradient(90deg,#ef6623,#ffc012);
}


.card-header {
    padding: 24px 24px 0 24px;
    margin-bottom: 0;
}
.card-body {
    flex: 1 1 auto;
    z-index: 10;
    padding: 24px;
}
.card-pretitle, .muted {
    margin-bottom: 8px;
    color: #6A6A6A;
    font-size: .80rem;
}

.announcement {
    margin-bottom: 0px;
}
.bg-highlight {background-color: #FFFFE9;}

.announcement h4 {margin-bottom: 6px; }
.announcement h5 {margin-bottom: 0px; }

@media only screen and (max-width: 1030px) {
    .announcement {
      margin: 0 2% 1.2rem;
    }
  }
.sign-in {
    background: #f4f4f4; padding: 2rem 3rem;
}

.p1-3 { 
    padding: 1rem; 
}

label {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 700;
    font-size: .90rem;
    padding-bottom: .3rem;
}
.bg-highlight {
    background-color: #FFFFE9;
}

.f-right {
    float: right;
}

.register-btn {margin-top: 8px;}

.text-center {
    text-align: center!important;
}

.bm-1-5 {
    margin-bottom: 1.5rem;
}
.w-100 {width: 100%; }

.section-border {
    border: 1px solid #D2D7D9; 
    background: #fff; 
}

.section-title {
	background: #858585; 
    padding: 8px 1.4rem;
    color: #fff;
    font-size: 1.8rem ;
    }
    

.ruckus img {
    max-height: 50px;
    margin: 0 0 8px;
}
.ruckus h5 {
	margin-bottom: 6px;
}