/*
* This is the main CSS file for Status Page UI OCI version
*
* created by: laszlo.imrei@oracle.com
* created on: 2021-10-09
 */
body{
    background: rgb(245, 244, 242);
    font-family: Oracle Sans ;
    padding-top:137px;
    padding-bottom: 60px;
}
.oraclered{
    background: #C74634;
}

.oraclered-text{
    color: #C74634;
}

.left{
    float:left;
}
.right{
    float:right;
}
.clear{
    clear: both;
}

.h2text{
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
}

.container{
    padding-left: 15px;
    padding-right: 15px;
    margin-left:auto;
    margin-right:auto;
}
@media (max-width: 767px) { .container{ width:100%; } }
@media (min-width: 768px) and (max-width: 991px) { .container{ width:750px; } }
@media (min-width: 992px) and (max-width: 1199px) { .container{ width:970px; } }
@media (min-width: 1200px) { .container{ width:1170px; } }

.btn{
    border-radius: 4px;
    border: 0;
    padding: 9px 16px;
    font-size: 13.75px;
    font-weight: 500;
    height:46px;
}
.btn-black{
    color: #FFFFFF;
    background: #312D2A;
    transition: background-color 0.5s ease-out;
}
.btn-black:hover{
    background: #211D1A;
}
.btn-black.disabled{
    color: #FFFFFF;
    background: #635F5C;
    transition: background-color 0.5s ease-out;
    cursor: not-allowed;
}
.btn-black.disabled:hover{
    background: #635F5C;
}
.btn-white{
    background: #FFFFFF;
    color:#000000;
    border: 1px solid rgba(22, 21, 19, 0.5);
    box-sizing: border-box;
    transition: background-color 0.5s ease-out;
}
.btn-white:hover{
    background: #DFDFDF;
}
.tab-container{
    display:none;
}
.tab-container.active{
    display:block;
}


/* Header */
#header-top{
    position: absolute;
    width: 100%;
    height: 48px;
    left: 0px;
    top: 0px;
    background: #3A3632;
    color: #FCFBFA;
    font-size: 18px;
    line-height: 21px;
}

.o-img{
    width: 42px;
    margin-top: 10px;
}
.cloudinfra{
    margin-left: 50px;
    display: block;
    position: absolute;
    font-weight: 500;
    top: 14px;
}

#header-bottom{
    position: absolute;
    width: 100%;
    height: 77px;
    left: 0px;
    top: 48px;

    background: rgb(251, 249, 248);
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.12);
}
#header-bottom h1{
    font-size: 28px;
    line-height: 75px;
    /*margin-top:21px;*/
}

.header-tab{
    font-size: 16px;
    color: #7A736E;
    font-weight: bold;
    display: inline-block;
    margin-right: 20px;
    text-decoration: none;
    transition: color 0.5s ease-out;
}
.header-tab:hover{
    color: #514C47;
}
.header-tab.active{
    color: #514C47;
    cursor: default;
}
.header-logo{

}

/* Main page */
.bg-white{
    background: #ffffff;
    color:#000000;
}
.page-description-p{
    padding: 18px 10px 0px;
    font-size: 14px;
}
/* Alert box */
.alert{
    padding: 10px 17px;
    margin-top: 24px;
    background-color: #FFFFFF;
    position: relative;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;
}

.alert-icon{
    width:16.6px;
    height:16.6px;
    display: block;
    position: absolute;
    top:26.5px;
}
.icon-clock{
    background: url('../img/error-s.svg') center center;
}
.icon-x{
    background: url('../img/cancel-s.svg') center center;
}
.icon-ok{
    background: url('../img/success-s.svg') center center;
}
.icon-warn{
    background: url('../img/warning-s.svg') center center;
}

.alert-body{
    color: #161513;
    padding:16px 24px;
}
.alert-title{
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
}
.alert-text{
    margin-top: 10px;
    font-size: 14px;
    line-height: 16px;
}


.border-red{
    border: 1px solid #D63B25;
}
.border-yellow{
    border: 1px solid #EB9632;
}

.colorstrip{
    background: url(../img/colorstrip.png) no-repeat bottom center;
    background-size: cover;
    border-radius: 6px 6px 0px 0px;
    width: 100%;
    height: 6px;
    margin-top:24px;
}

/* Icons */
.ion-ios-minus-outline{
    text-decoration: none;
    display: block;
    float: left;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid black;
    margin-right: 10px;
    margin-top: 9px;
}
.ion-ios-plus-outline{
    text-decoration: none;
    display: block;
    float: left;
    width: 0px;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid black;
    margin-right: 11px;
    margin-left: 4px;
    margin-top: 6px;
}

.ion-ios-circle-filled{
    width: 14px;
    height: 14px;
    border-radius: 7px;
    display: block;
    margin-top: 4px;
}
i.reds { background: #AB3E2D !important; }
i.blues { background: #407481 !important; }
i.yellows { background: #916405 !important; }
i.greens { background: #5F7E58 !important; }
i.purples { background: #695073 !important; }
i.oranges { background: #AB3E2D !important; }
.reds { color: #AB3E2D !important; }
.blues { color: #407481 !important; }
.yellows { color: #916405 !important; }
.greens { color: #5F7E58 !important; }
.purples { color: #695073 !important; }
.oranges { color: #AB3E2D !important; }

/* Components */
#components-div{
    border-radius: 0px 0px 6px 6px;
}

.shadow{
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.component-header{
    width:100%;
    padding: 10px 17px;
    font-size: 12px;
    color: rgba(22, 21, 19, 0.65);
}

.component{
    border-top: 1px solid rgba(22, 21, 19, 0.1);
    width:100%;
    padding: 10px 17px;
    font-size: 13.75px;
}
.component-group{

}
.component-group-title{
    background: url("../img/texture.svg") #E8E8E7 repeat ;
    width:100%;
    padding: 10px 17px;
    font-size: 16px;
    font-weight: normal;
    border-top: 1px solid white;
}
.component-name{
    float:left;
    width:70%;
    color: rgb(0, 0, 0);
    font-size: 14px;
    font-weight: 400;
}
.component-name a{
    color: rgb(0, 0, 0);
    text-decoration: none;
}
.component-status{
    float:left;
    text-align: right;
    width:30%;
    font-size: 14px;
    font-weight: 400;
}

/* Events */
#events-header{
    height:50px;
    width:100%;
    padding:12px 24px;
}
#events-div{
    border-radius: 0px 0px 6px 6px;
    padding-bottom: 6px;
}
.event-box{
    margin-top:16px;
    color: #161513;
    padding:12px 24px;
}
.event-title{
    font-size: 14px;
    line-height: 20px;
    margin-bottom:6px;
    color: rgb(102, 95, 91);
    font-weight: 500;
}
.event-lead{
    font-size: 14px;
    line-height: 16px;
    margin-bottom:6px;
}
.event-text{
    font-size: 12px;
    line-height: 16px;
    /* color: rgba(22, 21, 19, 0.65); */
}
.event-time span{
    font-size:12px;
    font-weight: bold;
    line-height: 14px;
    margin-bottom: 10px;
    margin-top: 0px;
    display: block;
}
.event-link{
    display:block;
    margin: 6px 0px;
    color: #2596be;
}
.event-link:hover{
    color: #0056b3;
}

.event-month{
    margin-left: 25px;
    margin-bottom: -10px;
    margin-top: 25px;
    font-weight: bold;
}

update_status {
    display: inline-block;
    font-weight: bold;
}
update_status:after{
    content:" - ";
    font-weight: normal;
}
update_text{
    display:inline;
    line-height: 1.6em!important;
}
update_ts{
    display:block;
    color:#555;
    font-size: 87%;
    padding-bottom:10px;
    margin-bottom: 10px;
    border-bottom: 0px solid #aaa;
    clear:both;
}
update_ts:last-child{
    border-bottom: 0;
}


#incident-div{
    border-radius: 0px 0px 6px 6px;
}
#incident-title{
    font-size: 24px;
    line-height: 32px;
    margin-top: 10px;
    margin-bottom: 10px;
}
#incident-status{
    margin: -5px 0 10px 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 32px;
    color: #555;
}
#incident-dates{
    margin: 5px 0;
    font-size: 14px;
    line-height: 24px;
    color: #555;
}
dl {
    padding-top: 18px;
    border-top: 1px solid #EEE;
}
dt {
    float: left;
    clear: left;
    width: 100px;
    text-align: right;
    font-weight: bold;
}
dt::after {
    content: ":";
}
dd {
    margin: 0 0 0 110px;
    padding: 0 0 0.5em 0;
}

/* Subscribe, Popup */
.popup{
    display: none;
    background: rgba(0,0,0,0.6);
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0;
}

.popup-stripe{
    background: url(../img/dialog-texture.png) repeat-x bottom center rgb(251, 249, 248);
    border-radius: 6px 6px 0px 0px;
    width: 100%;
    height: 20px;
}

.bg-lightgray{
    background: rgb(251, 249, 248);
}

.popup.show{
    display: block!important;
    opacity: 1;
    transition: opacity 0.5s ease-in;
}
.popup-box{
    margin-top: 35%;
    max-width: 501px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
}

#subscribe-div{
    border-radius: 0px 0px 6px 6px;
    padding-bottom: 6px;
}

#subscribe-form-error{
    color: #C74634;
    font-size: 12px;
    padding-left:3px;
}

label{
    display:block;
    color: rgb(22, 21, 19);
}
label:focus{
    color: rgb(0, 0, 0);
}

.input{
    border: 1px solid rgb(22, 21, 19);
    border-radius: 4px;
    cursor: text;
    font-size: 16px;
    min-height: 52px;
    padding: 24px 12px 0 12px;
    width: 434px;
}
.input:focus{
    border: 1px solid rgb(0, 0, 0);
}

/* Error */
#error-header{
    margin-top:100px;
    font-weight: bolder;
    font-size: 40px;
    line-height: 52px;
    color: #000000;
}

#error-text{
    margin-top: 50px;
    color: #C74634;
    font-size: 36px;
    line-height: 44px;
    font-weight: bold;
}
#error-content{
    color: #000000;
    font-size: 24px;
    line-height: 44px;
    font-weight: bold;
}


/* Footer */
#footer{
    position: fixed;
    left: 0%;
    right: 0%;
    bottom: 0%;
    color:#BCB6B1;
    background: #312D2A;
    font-size: 12px;
    line-height: 16px;
    height: 40px;
    width: 100%;
    vertical-align:middle;
}

#footer a{
    display:inline-block;
    margin-top: 12px;
    margin-right:10px;
    color:#BCB6B1;
    text-decoration: none;
}

#footer a:hover{
    color:#DCD6D1;
}

#footer img{
    margin-top: 8px;
    display: inline-block;
}

/*  */



/* Loader */
#loader{
    position: fixed;
    z-index: 999999;
    background: #000000;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
#loader-div{
    height:45%;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}


#loader-oracle-o{
    opacity: 1;
    transition: opacity 1s ease-in;
    height: 50px;
}
#loader-oracle-r{
    opacity: 1;
    transition: opacity 1s 3s ease-in;
    height: 50px;
}
#loader-oracle-a{
    opacity: 1;
    transition: opacity 1s 1s ease-in;
    margin-left: -3px;
    height: 50px;
}
#loader-oracle-c{
    opacity: 1;
    transition: opacity 1s 4s ease-in;
    margin-left:-8px;
    height: 50px;
}
#loader-oracle-l{
    opacity: 1;
    transition: opacity 1s 5s ease-in;
    height: 50px;
}
#loader-oracle-e{
    opacity: 1;
    transition: opacity 1s 2s ease-in;
    margin-left: -6px;
    height: 50px;
}
#loader-oracle-sp{
    opacity: 1;
    transition: opacity 0.5s 6s ease-in;
    font-weight: bold;
    font-size: 16px;
    margin-top:10px;
    color: #FAFAFA;
}

.loader-oracle{
    opacity: 0!important;
}

#loader-oracle{
    text-align: center;
}

.fadeout{
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 1s, opacity 1s linear;
}

.hidden{
    display:none;
}

#iframe-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 9999;
}