* {
    border-radius: 0 !important;
}

html {
box-sizing: border-box;
}

.box {
    max-width: 700px;
    width: auto;
}

.centerBox {
    margin: 0 auto;
    float: none;
    margin-bottom: 10px;
}

.btnFormL {
    position: absolute;
    bottom: -50px;
    left: 0;
}

.btnFormR {
    position: absolute;
    bottom: -50px;
    right: 0;
}

.languageImg {
    max-height: 20px;
    width: 30px;
}

.btnClose {
    position: absolute;
    top: 7px;
    right: 13px;
}

.paddingLR10 {
    padding: 0 10px;
}

.marginLR10 {
    margin: 0 10px;
}

.textSizeXL {
    font-size: x-large;
}

.minWidth310 {
    min-width: 310px;
}

.maxWidth350 {
    max-width: 350px;
}

.p-5 {
    padding: 10px !important;
    padding-top: 15px !important;
}


@media (max-width: 767px) {
    .paddingLR10 {
        padding: 0;
        display: none;
    }
}

.btnResponsive {
    white-space: normal;
    text-align: left;
}

#overlay {
    height: 0;
    width: 100%;
    max-height: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(29, 33, 36);
    background-color: rgba(29, 33, 36, 0.9);
    transition: 0.5s;
    overflow: auto;
}

#overlayPrivateKey {
    height: 0;
    width: 100%;
    max-height: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(29, 33, 36);
    background-color: rgba(29, 33, 36, 0.9);
    transition: 0.5s;
    overflow: auto;
}

.overlay-content {
    position: relative;
    width: 100%;
}

textarea.key {
    resize: none;
    border: 1px solid #1d2124;
    font-family: "Courier New";
    font-size: small;
    width: 100%;
}

textarea.message {
    resize: none;
    width: 100%;
}

.textareaBtn {
    transition: .5s;
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgb(29, 33, 36);
    background-color: rgba(29, 33, 36, 0.03);
    color: white !important;
}

.textareaBtn:hover {
    transition: 1s;
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgb(29, 33, 36);
    background-color: rgba(29, 33, 36, 0.9);
    color: white !important;
}

.textareaDiv {
    display: inline-block;
    position: relative;
}

.fontMonospace {
    font-family: "Courier New";
    word-break: break-word;
}

.nowrap {
    white-space: nowrap;
}

.faDisabled {
    color: gray;
}

.faGreen {
    color: forestgreen;
}

.faRed {
    color: red;
}

.formInline {
    display: inline;
    margin: 0;
    padding: 0;
}

.backupsButton {
    background-color: Transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
    padding: 5px;
}

.bigBtn {
    width: 150px;
    height: 150px;
    min-width: 150px;
    min-height: 150px;
    max-width: 150px;
    max-height: 150px;
    padding-top: 20px;
    text-align: center;
    display: inline-block;
}

.aBtnLight, .aBtnLight:visited, .aBtnLight:focus {
     color: #f8f9fa !important;
 }

.aBtnLight:hover {
    color: #282c30 !important;
}

.aBtnGreen, .aBtnGreen:visited, .aBtnGreen:focus {
    color:#28a745 !important;
}

.aBtnGreen:hover {
    color: #f8f9fa !important;
}

.bottomAlign {
    float: none !important;
    display: table-cell !important;
    vertical-align: bottom !important;
}

.linkButtonSize {
    padding: 1px 6px;
}

/*dropdown dark mode*/
.dropdown-menu {
    min-width: 5px !important;
    background-color: #343a40;
    padding: 0;
}

.dropdown-item:hover {
    min-width: 5px !important;
    background-color: #282c30;
    color: #f8f9fa;
}

.dropdown-item:active {
    min-width: 5px !important;
    background-color: #282c30;
    color: #f8f9fa;
}

.dropdown-item:focus {
    min-width: 5px !important;
    background-color: #282c30;
    color: #f8f9fa;
}

.dropdown-menu a {
    color: #f8f9fa;
}

/*dropdown dark mode end*/

/*flash messages*/
.flashMessage {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    opacity: 0;
}

.fadeIn {
    animation-name: fadeIn;
    animation-fill-mode: both;
    animation-duration: 200ms;
}

.fadeOut {
    animation-name: fadeOut;
    animation-fill-mode: both;
    animation-duration: 1.5s;
}

.animationDelay5s {
    animation-delay: 5s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*flash messages end*/

/*multi step form from https://bootsnipp.com/snippets/e3MBM */
.stepwizard-step p {
    margin-top: 10px;
}

.stepwizard-row {
    display: table-row;
}

.stepwizard {
    display: table;
    width: 85%;
    position: relative;
}

.stepwizard-step button[disabled] {
    opacity: 1 !important;
    filter: alpha(opacity=100%) !important;
}

.stepwizard-row:before {
    top: 14px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    background-color: #ccc;
}

.stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}

.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px !important;
    border: 1px solid #1d2124;
}

/*multi step form end*/

/*responsive table from https://codepen.io/maddesigns/full/pHqnt*/
table.responsive {
    width: 100%;
}

table.responsive tr {
    border-top: 1px solid #ccc;
}

table.responsive th {
    border-top: 0;
}

table.responsive tr:nth-child(odd) {
    background-color: #fffcfc;
}

@media (max-width: 768px) {
    table.responsive, table.responsive thead, table.responsive tbody, table.responsive th, table.responsive td, table.responsive tr {
        display: block;
        overflow: hidden;
    }

    .table.responsive td {
        border-top: 0;
    }

    table.responsive thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    table.responsive td {
        display: flex;
    }

    table.responsive td:before {
        content: attr(data-label) ": ";
        flex: 0 0 135px;
        font-weight: bold;
        margin-right: 1em;
    }
}

@media (max-width: 320px) {
    table.responsive td:before {
        content: attr(data-label) ": ";
        flex: 0 0 30px;
        font-weight: bold;
        margin-right: .5em;
    }
}
/*responsive table end*/



/* defaults */
*, *::before, *::after {
    box-sizing: inherit;
}

/*Pricing overview from https://bootsnipp.com/snippets/8dEW*/
.plan {
    text-align: center;
    margin-bottom: 20px;
}

.plan:hover {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4), 0 1px 5px rgba(130, 130, 130, 0.35);
}

.the-price {
    background-color: rgba(220, 220, 220, .17);
    box-shadow: 0 1px 0 #dcdcdc, inset 0 1px 0 #fff;
    padding: 20px;
    margin: 0;
}

.the-price h1 {
    line-height: 1em;
    padding: 0;
    margin: 0;
}

.subscript {
    font-size: 25px;
}

/* CSS-only ribbon styles    */
.cnrflash {
    /*Position correctly within container*/
    position: absolute;
    top: -10px;
    right: -12px;
    z-index: 1; /*Set overflow to hidden, to mask inner square*/
    overflow: hidden; /*Set size and add subtle rounding  		to soften edges*/
    width: 100px;
    height: 100px;
    border-radius: 3px 5px 3px 0;
}

.cnrflash-inner {
    /*Set position, make larger then 			container and rotate 45 degrees*/
    position: absolute;
    bottom: 0;
    right: 0;
    width: 145px;
    height: 145px;
    -ms-transform: rotate(45deg); /* IE 9 */
    -o-transform: rotate(45deg); /* Opera */
    -moz-transform: rotate(45deg); /* Firefox */
    -webkit-transform: rotate(45deg); /* Safari and Chrome */
    -webkit-transform-origin: 100% 100%; /*Purely decorative effects to add texture and stuff*/ /* Safari and Chrome */
    -ms-transform-origin: 100% 100%; /* IE 9 */
    -o-transform-origin: 100% 100%; /* Opera */
    -moz-transform-origin: 100% 100%; /* Firefox */
    background-image: linear-gradient(90deg, transparent 50%, rgba(255, 255, 255, .1) 50%), linear-gradient(0deg, transparent 0%, rgba(1, 1, 1, .2) 50%);
    background-size: 4px, auto, auto, auto;
    background-color: #aa0101;
    box-shadow: 0 3px 3px 0 rgba(1, 1, 1, .5), 0 1px 0 0 rgba(1, 1, 1, .5), inset 0 -1px 8px 0 rgba(255, 255, 255, .3), inset 0 -1px 0 0 rgba(255, 255, 255, .2);
}

.cnrflash-inner:before, .cnrflash-inner:after {
    /*Use the border triangle trick to make  				it look like the ribbon wraps round it's 				container*/
    content: " ";
    display: block;
    position: absolute;
    bottom: -16px;
    width: 0;
    height: 0;
    border: 8px solid #800000;
}

.cnrflash-inner:before {
    left: 1px;
    border-bottom-color: transparent;
    border-right-color: transparent;
}

.cnrflash-inner:after {
    right: 0;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.cnrflash-label {
    /*Make the label look nice*/
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    padding-bottom: 5px;
    color: #fff;
    text-shadow: 0 1px 1px rgba(1, 1, 1, .8);
    font-size: 0.8em;
    text-align: center;
}

/*Pricing overview end*/