﻿/*
    1)Message Toast
    2)Add Or Minus Input
    3) CKEditor

*/


/* === 1) MESSAGE TOAST ==== */

.middle-message-toast, .middle-message-toast div {
    border-radius: 50px;
}
/*===Message Toast End*/
/* 2) Add Or Minus Input */

.add-minus-container {
    display: flex;
}

.btn.btn-half-pills-left {
    border-radius: 0.5rem 0rem 0rem 0.5rem;
}

.btn.btn-half-pills-right {
    border-radius: 0rem 0.5rem 0.5rem 0rem;
}

.input-square {
    border-radius: 0px !important;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* End OF 10 */

/* 8) CKEditor */
.editor-cont {
    display: flex;
    position: relative;
    justify-content: center;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid hsl(0, 0%, 77%);
    max-height: 200px;
    min-height: 200px;
}

.ck-content .table {
    width: 100%;
}

/* End OF 8 */