﻿.confirm-box {
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.message-box {
    background: #fff;
    text-align: center;
    font-family: arial;
    font-size: 16px;
    line-height: 1.5;
    padding: 20px;
    border-radius: 5px;
    max-width: 90%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);    
    display: inline-block;
    zoom:1;  
    word-wrap:break-word;
    overflow-y:auto;

}

.button-box {
    margin-top: 30px;
}

.dark-button, .light-button {
    padding: 1px 20px;
    font-size: 16px;
    margin: 0 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid transparent !important;
}

.light-button {
    background: none;
    outline: 1px solid purple;
    color: black;
}

.dark-button {
    background: purple;
    color: white;
}

    .dark-button:hover, .light-button:hover {
        border: 1px solid goldenrod !important;
    }

.item {
    position: relative;
    float: left;
}

    .item h2 {
        text-align: center;
        position: absolute;
        line-height: 5px;
        font-size: 15px;
        width: 100%;
    }

svg1 {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.circle_animation {
    stroke-dasharray: 360;
    stroke-dashoffset: 0;
    transition: all 10s linear;
}

.message-box-icon {
    position: relative;
    top: 8px !important;
    font-size: 25px;
}

.message-box-icon-danger {
    color: red;
}

.message-box-icon-success {
    color: green;
}

.message-box-icon-info {
    color: purple;
}
.message-box-icon-warning {
    color: darkred;
}
