.cgss-vulnerabilities-view-page {

}



.vul-title {
}


.vuldetail-row {

}

    .vuldetail-col {
        padding: 10px 0;
        margin-bottom: 20px;
        border-bottom: 1px solid #DDD;
        display: flex;
    }
        
        .details-title {
            min-width: 100px;
            display: flex;
            flex-direction: column;
        }

            .details-title img {
                align-self: center;
                width: 55px;
            }

            .details-title h2 {
                font-size: 1.4em !important;
                text-align: center;
            }

        .details-content {
            margin-left: 60px;
            align-self: center;
            font-size: 1.4em;
            display: flex;
        }



.dot {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 25px;
    margin-top: 0px;
}

.priority-red { background-color: red; }

.priority-orange { background-color: orange; }

.priority-yellow { background-color: yellow; }



/**
 * Features Checkbox switch
 * Source: https://www.designlabthemes.com/css-toggle-switch/
 * 
 * .checkbox-animate2: The class for the OFF state.
 */


 .checkbox-switch {
    display: inline-block;
    overflow: hidden;
    position: relative;
    text-align: left;
    width: 70px;
    height: 25px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    line-height: 1.2;
    font-size: 14px;
}

.checkbox-switch input.input-checkbox {
	position: absolute;
	left: 0;
	top: 0;
    width: 70px;
    height: 25px;
	padding: 0;
	margin: 0;
	opacity: 0;
	z-index: 2;
	cursor: grab;
}

.checkbox-switch .checkbox-animate,
.checkbox-switch .checkbox-animate2 {
    position: relative;
    width: 70px;
    height: 25px;
    background-color: #95a5a6;
    -webkit-transition: background 0.25s ease-out 0s;
    transition: background 0.25s ease-out 0s;
}

.checkbox-switch .checkbox-animate:before,
.checkbox-switch .checkbox-animate2:before {
	content: "";
	display: block;
	position: absolute;
	width: 17px;
	height: 17px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	background-color: #7f8c8d;
	top: 4px;
	left: 5px;
	 -webkit-transition: left 0.3s ease-out 0s;
    transition: left 0.3s ease-out 0s;
    z-index: 10;
}

.checkbox-switch .checkbox-off,
.checkbox-switch .checkbox-on {
	float: left;
	color: #fff;
	font-weight: 700;
	padding-top: 6px;
	 -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.checkbox-switch .checkbox-off {
	margin-left: 30px;
	opacity: 1;
}

.checkbox-switch .checkbox-on {
	display: none;
	float: right;
	margin-right: 35px;
	opacity: 0;
}

.checkbox-switch input.input-checkbox:checked + .checkbox-animate .checkbox-off,
.checkbox-switch input.input-checkbox:checked + .checkbox-animate2 .checkbox-off {
	display: none;
	opacity: 0;
}

.checkbox-switch input.input-checkbox:checked + .checkbox-animate .checkbox-on {
	display: block;
	opacity: 1;
}

.checkbox-switch input.input-checkbox:checked + .checkbox-animate {
	background-color: #47A730;
}

.checkbox-switch input.input-checkbox:checked + .checkbox-animate:before {
	left: 49px;
	background-color: #fff;
}



/**
 * Add Exception Modal
 *
 */

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 40%;
}

.modal-body {padding: 2px 16px;}


.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  color: white;
}


.modal-footer {
  padding: 2px 16px;
  color: white;
}

.modal-footer button{
  margin-top: 5px;
}

.modal-validation-text {
  padding: 0;
  margin: 0;
  color: red;
}

/* Add Animation */
@-webkit-keyframes slideIn {
  from {bottom: -300px; opacity: 0} 
  to {bottom: 0; opacity: 1}
}
    
@keyframes slideIn {
  from {bottom: -300px; opacity: 0}
  to {bottom: 0; opacity: 1}
}

@-webkit-keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

@keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}