/*.modal {*/
/*    display: none; */
/*    position: fixed; */
/*    z-index: 1; */
/*    left: 0; */
/*    top: 0; */
/*    width: 100%; */
/*    height: 100%; */
/*    overflow: auto; */
/*    background-color: rgb(0,0,0); */
/*    background-color: rgba(0,0,0,0.4); */
/*}*/

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

.close {
    color: #aaa; 
    float: right; 
    font-size: 28px; 
    font-weight: bold; 
}
.close:hover, .close:focus {
    color: black; 
    text-decoration: none; 
    cursor: pointer; 
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.6);
    z-index: 50;
    overflow: auto;
    font-size: 1.3vw;
}

.modal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1vw;
}

.modal-inform {
    color: white;
}

.modal-box {
    width: 75vw;
    height: 30vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    background-color: rgba(255,255,255,1);
    z-index: 100;
    border-radius: 2.5vw;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
}

.modal-body {
    width: 44vw;
    height: 26vw;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 1vw;
}

.modal-itemImage {
    width: 25vw;
    height: 26vw;
    object-fit: cover;
    border-radius: 1vw;
    /*box-shadow: 0px 0px 10px rgba(0, 0, 0, .3);*/
}

.modal-itemName {
    color: #001011;
    text-decoration: none; 
    /*font-weight: lighter;*/
    font-size: 2.8vw;
}

.modal-itemPrice {
    color: #001011;
    text-decoration: none; 
    font-weight: bold;
    font-size: 2.8vw;
    height: 115%;
}

.modal-button-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1vw;
    width: 100%;
    margin: 0;
}

.modal-blueBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5vw;
    border: none;
    border-radius: 1vw;
    height: 3vw;
    width: 100%;
    align-self: center;
    font-size: 1.12vw;
    background-color: #0171e3;
    color: white;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Greycliffe';
    transition: 0.2s;
    opacity: 0.5;
}

.modal-greyBtn {
    border: none;
    border-radius: 0.5vw;
    height: 100%;
    width: 30%;
    align-self: center;
    font-size: 1.12vw;
    background-color: #fafafa;
    color: #0171e3;
    cursor: pointer;
    font-family: 'Greycliffe';
    /*font-weight: bold;*/
}

.modal-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}

.form-control {
    border: none;
    border-bottom: 0.25vh solid;
    border-bottom-color: #B0B0B0;
    outline: none;
    width: 100%;
    height: 3vw;
    transition: 0.35s;
    font-size: 1.12vw;
    font-weight: lighter;
    font-family: 'Greycliffe';
}

.form-control:focus {
    border-bottom: 2px #0171e3 solid;
    border-bottom-color: #0171e3;
    transition: 0.35s;
}

.red-border {
    border-bottom-color: #DB5461;
}

.blue-border {
    border-bottom-color: #0171e3;
}

.form-label {
    width: 100%;
    font-size: 1vw;
}

.mb {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5vw;
}

.price-and-link {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    /*gap: 2vw;*/
}

.close-cross {
    width: 2vw;
    height: 2vw;
    user-drag: none;
    transition: 0.2s;
}

.close-cross:hover {
    transition: 0.2s;
    scale: 1.1;
    cursor: pointer;
}

.btnScale:hover {
    transition: 0.2s;
    scale: 1.01;
    cursor: pointer;
}

.link {
    margin-left: 2vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5vw;
    border: none;
    border-radius: 1vw;
    height: 3vw;
    width: auto;
    align-self: center;
    font-size: 1.3vw;
    background-color: #FAFAFA;
    color: #0171e3;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Greycliffe';
    transition: 0.2s;
    padding: 1vw;
    
}

.icon-blue {
    filter: invert(27%) sepia(97%) saturate(5603%) hue-rotate(200deg) brightness(97%) contrast(101%);
    width: 1.2vw;
    height: 1.2vw;
    margin-left: 0.5vw;
    margin-top: 0.3vw;
}

.icon-white {
    filter: invert(100%);
    width: 1.2vw;
    height: 1.2vw;
    margin-top: 0.2vw;
    /*display: inline-block;*/
    /*vertical-align: middle;*/
}


/*.close {*/
/*    color: #aaa; */
/*    float: right; */
/*    font-size: 28px; */
/*    font-weight: bold; */
/*}*/
/*.close:hover, .close:focus {*/
/*    color: black; */
/*    text-decoration: none; */
/*    cursor: pointer; */
/*}*/