html,
body,
header,
.view {
  height: 100%;
}


:root {
    --super-light:#e4dabf;
	--light:#d4b468;
	--light-op:rgba(212,180,104,0.8);
	--dark:#1f2f61;
	--dark-op:rgba(31,47,97,0.3);
	--shadow:rgba(200,200,200,0.6);
}

.body{
    color:var(--dark);
}
.btn-primary {
    color: var(--dark);
    background-color: var(--light);
    border-color: var(--light);
}
.stock_item{
    width: 100%;
    position: relative;
    display: inline-block; /* Make the width of box same as image */
    margin-top: 10%;
}
.text_top{
    position: absolute;
    z-index: 999;
    text-align: left;
    top: 0;
    width: 100%; /* Set the width of the positioned div */
}
.text_bottom{
    position: absolute;
    z-index: 999;
    text-align: right;
    bottom: 0;
    background: rgb(0, 0, 0);
    opacity: 0.5;
    transition: .5s ease;
}
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #008CBA;
}
.text_bottom:hover {
    opacity: 1;
}
.stock_item img{
    width: 100%; /* Set the width of the positioned div */
}
.carousel h1 {
    margin:1rem;
}
.carousel h5 {
    margin:1rem;
}
.col-sm {
    min-width: 340px;
    min-height: 200px;
    display:flex; 
    background: white;
    margin: 15px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 15px;
    border-bottom-style: solid;
    border-right-style: solid;
    border-width: 1px;
    border-color: var(--dark-op);
}
.prod-img{
    width:30%; 
    padding-right: 15px;
}
.prod-info{
    padding-left: 15px;
}

@media (min-width: 576px){
    .modal-dialog {
        max-width: 58vh;
        min-width: 400px;
    }
}

@media (min-width: 1500px){
    .container {
        max-width: 1400px;
    }
}

@media (min-width: 1800px){
    .container {
        max-width: 1700px;
    }
}

@media (min-width: 2500px){
    .container {
        max-width: 2300px;
    }
}
.row {
    margin-right: 0;
    margin-left: 0;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%231f2f61' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}
.carousel-control-prev-icon-light {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23d4b468' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%231f2f61' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon-light {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23d4b468' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}